Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-01-08 16:40:40 +0300
committerlovetox <philipp@hoerist.com>2022-01-08 16:40:40 +0300
commit1d834cf9f509244f836a6cd620d1270ea733928a (patch)
tree280a3dcf00395111cd33aaa0ec675be4a2f2750e
parent2da28b4b97d4e35fab17e4af95ec16cef2f9df56 (diff)
[birthday_reminder] Adpat to Gajim changes
-rw-r--r--birthday_reminder/plugin.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/birthday_reminder/plugin.py b/birthday_reminder/plugin.py
index 72e355e..9c10707 100644
--- a/birthday_reminder/plugin.py
+++ b/birthday_reminder/plugin.py
@@ -126,10 +126,10 @@ class BirthDayPlugin(GajimPlugin):
app.ged.raise_event(
Notification(account=account,
jid=jid,
- notif_type='reminder',
- icon_name='trophy-gold',
+ type='reminder',
title=TITLE,
- text=TEXT % name))
+ text=TEXT % name,
+ icon_name='trophy-gold'))
return True
@staticmethod