Skip to content

Commit

Permalink
Merge pull request #3576 from frebib/frebib/dupe-room-crash
Browse files Browse the repository at this point in the history
Prevent crash with duplicate room suggestion
  • Loading branch information
bmarty authored Oct 2, 2024
2 parents 1c4ac31 + 7f3ebbb commit ee7e5b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fun SuggestionsPickerView(
when (suggestion) {
is ResolvedSuggestion.AtRoom -> "@room"
is ResolvedSuggestion.Member -> suggestion.roomMember.userId.value
is ResolvedSuggestion.Alias -> suggestion.roomAlias.value
is ResolvedSuggestion.Alias -> suggestion.roomSummary.roomId.value
}
}
) {
Expand Down

0 comments on commit ee7e5b8

Please sign in to comment.