From e0e3b9609ae0ce7d3749e8f5f9bfb1f9cfab38a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sun, 29 Apr 2018 23:38:16 +0200 Subject: [PATCH] Dont set urgency when we already set priority set_urgent is deprecated in favor of set_priority Fixes #9101 --- gajim/notify.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gajim/notify.py b/gajim/notify.py index 01bac95ff..e5e7b70ef 100644 --- a/gajim/notify.py +++ b/gajim/notify.py @@ -108,7 +108,6 @@ text=None, timeout=-1): # Only one notification per JID notif_id = jid notification.set_priority(Gio.NotificationPriority.NORMAL) - notification.set_urgent(False) app.app.send_notification(notif_id, notification)