diff --git a/fastlane/metadata/android/en-US/full_description.txt b/fastlane/metadata/android/en-US/full_description.txt
index ab9705ed6..1f7d1ed28 100644
--- a/fastlane/metadata/android/en-US/full_description.txt
+++ b/fastlane/metadata/android/en-US/full_description.txt
@@ -13,7 +13,7 @@ DeltaLab was created with a focus on usability, good user experience, and saving
Replies to your messages in muted groups trigger notifications
Quote-reply a message with a single emoji to set it as reaction
Location streaming feature enabled by default and have extra option to share location for 12 hours
-Verified icon is shown in the chat list for verified contacts and the "Device Messages" chat
+Verified icon is shown in the chat list for the "Device Messages" chat
Videos are played in loop, useful for short GIF videos
It is possible to click OPENPGP4FPR: and mumble: links in messages
Option to disable the auto-generated e-mail Subject set by Delta Chat
diff --git a/src/org/thoughtcrime/securesms/ConversationListItem.java b/src/org/thoughtcrime/securesms/ConversationListItem.java
index b88e432d3..97793cf62 100644
--- a/src/org/thoughtcrime/securesms/ConversationListItem.java
+++ b/src/org/thoughtcrime/securesms/ConversationListItem.java
@@ -174,7 +174,8 @@ public class ConversationListItem extends RelativeLayout
avatar.setSeenRecently(false);
} else {
avatar.setSeenRecently(contact.wasSeenRecently());
- if (contact.isVerified() || DcHelper.getContext(getContext()).getChat((int)chatId).isDeviceTalk()) {
+ DcChat dcChat = DcHelper.getContext(getContext()).getChat((int)chatId);
+ if (dcChat.isProtected() || dcChat.isDeviceTalk()) {
imgRight = R.drawable.ic_verified;
}
}
diff --git a/src/org/thoughtcrime/securesms/ConversationTitleView.java b/src/org/thoughtcrime/securesms/ConversationTitleView.java
index 844e3f7bc..828f2a705 100644
--- a/src/org/thoughtcrime/securesms/ConversationTitleView.java
+++ b/src/org/thoughtcrime/securesms/ConversationTitleView.java
@@ -74,7 +74,7 @@ public class ConversationTitleView extends RelativeLayout {
if (dcChat.isMuted()) {
imgLeft = R.drawable.ic_volume_off_white_18dp;
}
- if (dcChat.isProtected()) {
+ if (dcChat.isProtected() || dcChat.isDeviceTalk()) {
imgRight = R.drawable.ic_verified;
}