From ceac41b78240ff602485c19081d7adbe6eb42be3 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Sun, 7 May 2017 14:41:51 +0200 Subject: [PATCH] Workaround for hanging hints #349. --- src/ext-proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ext-proxy.c b/src/ext-proxy.c index 4bee71c..2cb2896 100644 --- a/src/ext-proxy.c +++ b/src/ext-proxy.c @@ -213,7 +213,7 @@ static GVariant *dbus_call_sync(Client *c, const char *method, GVariant *param) } result = g_dbus_proxy_call_sync(c->dbusproxy, method, param, - G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error); + G_DBUS_CALL_FLAGS_NONE, 500, NULL, &error); if (error) { g_warning("Failed dbus method %s: %s", method, error->message); -- 2.20.1