You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/factories/NotificationCreator.kt
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -137,7 +137,10 @@ class DefaultNotificationCreator(
137
137
// that can be displayed in not disturb mode if white listed (the later will need compat28.x)
138
138
.setCategory(NotificationCompat.CATEGORY_MESSAGE)
139
139
// ID of the corresponding shortcut, for conversation features under API 30+
140
-
.setShortcutId(roomInfo.roomId.value)
140
+
// Must match those created in the ShortcutInfoCompat.Builder()
141
+
// for the notification to appear as a "Conversation":
0 commit comments