From bbd24c4016df5b296162f92db017b8f93fc21660 Mon Sep 17 00:00:00 2001 From: Nanakusa <73281112+yofukashino@users.noreply.github.com> Date: Sun, 5 Jul 2026 01:53:28 +0530 Subject: [PATCH] fix: linux notification actions (#1286) --- fluxer_desktop/native/linux-notifications/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluxer_desktop/native/linux-notifications/src/lib.rs b/fluxer_desktop/native/linux-notifications/src/lib.rs index 0a98c13d2..bccfb5151 100644 --- a/fluxer_desktop/native/linux-notifications/src/lib.rs +++ b/fluxer_desktop/native/linux-notifications/src/lib.rs @@ -547,7 +547,7 @@ fn spawn_signal_thread( let conn = zbus::Connection::session().await?; let rule = MatchRule::builder() .msg_type(MessageType::Signal) - .sender(NOTIFY_DEST)? + .path(NOTIFY_PATH)? .interface(NOTIFY_IFACE)? .build(); let stream = MessageStream::for_match_rule(rule, &conn, Some(64)).await?;