Skip to content

Commit 7227991

Browse files
committed
Should have blocked approved recipient shown on convo
1 parent fb097a3 commit 7227991

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/org/thoughtcrime/securesms/repository/ConversationRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class DefaultConversationRepository @Inject constructor(
173173

174174
// Contacts
175175
for (contact in configs.contacts.all()) {
176-
if (contact.priority >= 0 && !contact.blocked) {
176+
if (contact.priority >= 0 && (!contact.blocked || contact.approved)) {
177177
add(Address.Standard(AccountId(contact.id)))
178178
}
179179
}

0 commit comments

Comments
 (0)