mirror of
https://github.com/oxen-io/session-android.git
synced 2025-11-16 02:23:13 +00:00
stop sync resolution of recipients on ui thread
Closes #3885 // FREEBIE
This commit is contained in:
committed by
Moxie Marlinspike
parent
151eca971b
commit
00eb637e51
@@ -1099,13 +1099,13 @@ public class MmsDatabase extends MessagingDatabase {
|
||||
|
||||
private Recipients getRecipientsFor(String address) {
|
||||
if (TextUtils.isEmpty(address) || address.equals("insert-address-token")) {
|
||||
return RecipientFactory.getRecipientsFor(context, Recipient.getUnknownRecipient(), false);
|
||||
return RecipientFactory.getRecipientsFor(context, Recipient.getUnknownRecipient(), true);
|
||||
}
|
||||
|
||||
Recipients recipients = RecipientFactory.getRecipientsFromString(context, address, false);
|
||||
Recipients recipients = RecipientFactory.getRecipientsFromString(context, address, true);
|
||||
|
||||
if (recipients == null || recipients.isEmpty()) {
|
||||
return RecipientFactory.getRecipientsFor(context, Recipient.getUnknownRecipient(), false);
|
||||
return RecipientFactory.getRecipientsFor(context, Recipient.getUnknownRecipient(), true);
|
||||
}
|
||||
|
||||
return recipients;
|
||||
|
||||
Reference in New Issue
Block a user