From: Daniel Carl Date: Sun, 7 May 2017 12:41:51 +0000 (+0200) Subject: Workaround for hanging hints #349. X-Git-Url: https://git.owens.tech/assets/static/git-favicon.png/assets/static/git-favicon.png/git?a=commitdiff_plain;h=ceac41b78240ff602485c19081d7adbe6eb42be3;p=vimb.git Workaround for hanging hints #349. --- 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);