Add a flag for recipientTrust.

This commit is contained in:
Greyson Parrelli
2020-07-21 16:03:25 -04:00
parent 0e4a19c368
commit 2a133587cc
2 changed files with 15 additions and 2 deletions

View File

@@ -368,6 +368,10 @@ public class RecipientDatabase extends Database {
throw new IllegalArgumentException("Must provide a UUID or E164!");
}
if (!FeatureFlags.recipientTrust()) {
highTrust = true;
}
RecipientId recipientNeedingRefresh = null;
Pair<RecipientId, RecipientId> remapped = null;
boolean transactionSuccessful = false;