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 430247a commit 76b9075Copy full SHA for 76b9075
app/src/main/java/org/thoughtcrime/securesms/database/MmsSmsDatabase.java
@@ -451,9 +451,7 @@ public Cursor getUnreadOrUnseenReactions() {
451
452
public Set<Address> getAllReferencedAddresses() {
453
final String[] projection = new String[] { "DISTINCT " + MmsSmsColumns.ADDRESS };
454
- final String selection =
455
- "NOT " + MmsSmsColumns.IS_DELETED +
456
- " AND " + MmsSmsColumns.ADDRESS + " IS NOT NULL" +
+ final String selection = MmsSmsColumns.ADDRESS + " IS NOT NULL" +
457
" AND " + MmsSmsColumns.ADDRESS + " != ''";
458
459
Set<Address> out = new HashSet<>();
0 commit comments