Fix issue when loading a legacy account file without aci

This commit is contained in:
AsamK 2021-12-05 12:01:12 +01:00
parent 6c1013b024
commit 124d10d6f8

View file

@ -532,7 +532,7 @@ public class SignalAccount implements Closeable {
if (legacyRecipientStore != null) { if (legacyRecipientStore != null) {
recipientStore.resolveRecipientsTrusted(legacyRecipientStore.getAddresses()); recipientStore.resolveRecipientsTrusted(legacyRecipientStore.getAddresses());
} }
recipientStore.resolveRecipientTrusted(getSelfAddress()); getSelfRecipientId();
migrated = true; migrated = true;
} }