Эх сурвалжийг харах

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

fix to show "Note to self" icon in conversation info
Sowjanya Kota 1 жил өмнө
parent
commit
ea02248247

+ 2 - 4
app/src/main/java/com/nextcloud/talk/conversationinfo/ConversationInfoActivity.kt

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