From 4e68e226a3e32b9fe704dfbee4526389036c5511 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 25 Jun 2025 16:13:27 +0000 Subject: [PATCH] client: Don't let the HTTP client think it is running standalone Signed-off-by: Michael Tremer --- src/pakfire/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pakfire/client.c b/src/pakfire/client.c index dc293dbd..63f7be4c 100644 --- a/src/pakfire/client.c +++ b/src/pakfire/client.c @@ -493,7 +493,7 @@ int pakfire_client_create(struct pakfire_client** client, goto ERROR; // Create a new HTTP client - r = pakfire_httpclient_create(&self->httpclient, self->ctx, NULL); + r = pakfire_httpclient_create(&self->httpclient, self->ctx, self->loop); if (r < 0) goto ERROR; -- 2.47.3