Skip to content

Commit e851aad

Browse files
notif: Use # with stream names
Fixes: #572
1 parent baea6d7 commit e851aad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/notifications/display.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ class NotificationDisplayManager {
9494
final zulipLocalizations = GlobalLocalizations.zulipLocalizations;
9595
final title = switch (data.recipient) {
9696
FcmMessageStreamRecipient(:var streamName?, :var topic) =>
97-
'$streamName > $topic',
97+
'#$streamName > $topic',
9898
FcmMessageStreamRecipient(:var topic) =>
99-
'(unknown stream) > $topic', // TODO get stream name from data
99+
'#(unknown stream) > $topic', // TODO get stream name from data
100100
FcmMessageDmRecipient(:var allRecipientIds) when allRecipientIds.length > 2 =>
101101
zulipLocalizations.notifGroupDmConversationLabel(
102102
data.senderFullName, allRecipientIds.length - 2), // TODO use others' names, from data

0 commit comments

Comments
 (0)