Skip to content

Commit fda6a1b

Browse files
committed
Fix notification watch button
1 parent 97410a0 commit fda6a1b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

twitch_indicator/gui/notifications.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,5 @@ def _on_notification_watch(
101101
self, notification: Notify.Notification, action: str, user_login: str
102102
) -> None:
103103
"""Callback for notification stream watch action."""
104-
self._gui_manager.app.activate_action("open-stream", GLib.Variant.new_string(user_login))
104+
var_user_login = GLib.Variant.new_string(user_login)
105+
self._gui_manager.app.actions.action_group.activate_action("open-stream", var_user_login)

0 commit comments

Comments
 (0)