Improve rendering of notifications

This commit is contained in:
Benoit Marty 2023-04-14 18:31:35 +02:00
parent d7cd24b3d0
commit e92fe45e3c

View file

@ -44,7 +44,7 @@ class RoomGroupMessageCreator @Inject constructor(
userAvatarUrl: String? userAvatarUrl: String?
): RoomNotification.Message { ): RoomNotification.Message {
val lastKnownRoomEvent = events.last() val lastKnownRoomEvent = events.last()
val roomName = lastKnownRoomEvent.roomName ?: lastKnownRoomEvent.senderName ?: "" val roomName = lastKnownRoomEvent.roomName ?: lastKnownRoomEvent.senderName ?: "Room name (${roomId.value.take(8)}…)"
val roomIsGroup = !lastKnownRoomEvent.roomIsDirect val roomIsGroup = !lastKnownRoomEvent.roomIsDirect
val style = NotificationCompat.MessagingStyle( val style = NotificationCompat.MessagingStyle(
Person.Builder() Person.Builder()