[1mdiff --git a/model.py b/model.py[m
[1mindex 2268de5..f2486ef 100644[m
[1m--- a/model.py[m
[1m+++ b/model.py[m
[36m@@ -157,7 +157,7 @@[m [mclass Notification:[m
icon = '🙏 '[m
elif self.type == Notification.REACTION:[m
event = f'reacted to your {kind}'[m
[31m- icon = self.reaction + ' '[m
[32m+[m[32m icon = (self.reaction if self.reaction else '🔔') + ' '[m
elif self.type == Notification.COMMENT:[m
event = f'commented on your {kind}'[m
icon = '💬 '[m
[1mdiff --git a/user.py b/user.py[m
[1mindex 8d711ce..4aaf416 100644[m
[1m--- a/user.py[m
[1m+++ b/user.py[m
[36m@@ -348,11 +348,7 @@[m [mclass Subgrouping:[m
src.append('')[m
# Print the notifications.[m
for notif in notifs:[m
[31m- try:[m
[31m- src.append('=> %s %s' % notif.entry(with_title=not top_head))[m
[31m- except:[m
[31m- # FIXME: notif.reaction can be None sometimes? A cancelled notification?[m
[31m- pass[m
[32m+[m[32m src.append('=> %s %s' % notif.entry(with_title=not top_head))[m
return '\n'.join(src) + '\n'[m
[m
[m
text/plain
This content has been proxied by September (3851b).