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
2 changed files with 17 additions and 2 deletions
+4 -1
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;
}
}