sendToGroup: Flow errors during key-fetching back up to original sender

This commit is contained in:
Scott Nonnenberg 2021-11-20 07:58:38 -08:00 committed by GitHub
parent 58e3dd9028
commit 3601279287
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 2 deletions

View file

@ -41,8 +41,11 @@ export async function getKeysForIdentifier(
if (theirUuid) {
await window.textsecure.storage.protocol.archiveAllSessions(theirUuid);
}
throw new UnregisteredUserError(identifier, error);
}
throw new UnregisteredUserError(identifier, error);
throw error;
}
}