Fix reported crash.
https://github.com/element-hq/element-x-android-rageshakes/issues/8517
This commit is contained in:
@@ -138,7 +138,12 @@ class EditDefaultNotificationSettingPresenter(
|
||||
)
|
||||
}
|
||||
// locale sensitive sorting
|
||||
.sortedWith(compareBy(Collator.getInstance()) { roomSummary -> roomSummary.name })
|
||||
.sortedWith(
|
||||
compareBy(Collator.getInstance()) { roomSummary ->
|
||||
// Collator does not handle null values, so we provide a fallback
|
||||
roomSummary.name ?: roomSummary.roomId.value
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
private fun CoroutineScope.setDefaultNotificationMode(mode: RoomNotificationMode, action: MutableState<AsyncAction<Unit>>) = launch {
|
||||
|
||||
Reference in New Issue
Block a user