We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb097a3 commit 7227991Copy full SHA for 7227991
app/src/main/java/org/thoughtcrime/securesms/repository/ConversationRepository.kt
@@ -173,7 +173,7 @@ class DefaultConversationRepository @Inject constructor(
173
174
// Contacts
175
for (contact in configs.contacts.all()) {
176
- if (contact.priority >= 0 && !contact.blocked) {
+ if (contact.priority >= 0 && (!contact.blocked || contact.approved)) {
177
add(Address.Standard(AccountId(contact.id)))
178
}
179
0 commit comments