Merge pull request #3847 from nextcloud/bugfix/noid/showNoteToSelfIconInConvInfo

fix to show "Note to self" icon in conversation info
This commit is contained in:
Sowjanya Kota 2024-04-17 15:33:40 +02:00 committed by GitHub
commit ea02248247
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -958,10 +958,8 @@ class ConversationInfoActivity :
binding.avatarImage.loadSystemAvatar() binding.avatarImage.loadSystemAvatar()
} }
ConversationType.DUMMY -> { ConversationType.NOTE_TO_SELF -> {
if (ConversationUtils.isNoteToSelfConversation(conversation!!)) { binding.avatarImage.loadNoteToSelfAvatar()
binding.avatarImage.loadNoteToSelfAvatar()
}
} }
else -> { else -> {