From 99f02cd8e194446d05a68d54ef860414f966abc6 Mon Sep 17 00:00:00 2001 From: deepend-tildeclub Date: Wed, 27 May 2026 11:01:52 -0600 Subject: [PATCH] Relax freedesktop notification DBus timeouts --- src/fe-gtk/notifications/notification-freedesktop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fe-gtk/notifications/notification-freedesktop.c b/src/fe-gtk/notifications/notification-freedesktop.c index 030309a4..32ebb004 100644 --- a/src/fe-gtk/notifications/notification-freedesktop.c +++ b/src/fe-gtk/notifications/notification-freedesktop.c @@ -75,7 +75,7 @@ notification_backend_show (const char *title, const char *text) "Notify", g_variant_builder_end (¶ms), G_DBUS_CALL_FLAGS_NONE, - 1000, + -1, NULL, (GAsyncReadyCallback)on_notify_ready, NULL); @@ -108,7 +108,7 @@ notification_backend_init (const char **error) "GetCapabilities", NULL, G_DBUS_CALL_FLAGS_NONE, - 30, + 1000, NULL, &err);