Accept profile keys for unknown members in groups

This commit is contained in:
trevor-signal
2023-10-13 21:14:46 -04:00
committed by GitHub
parent c892febdbc
commit b6f1b8b577
4 changed files with 57 additions and 32 deletions

View File

@@ -5464,7 +5464,7 @@ function profileKeyHasChanged(
function hasProfileKey(userId: ServiceIdString) {
const conversation = window.ConversationController.get(userId);
if (!conversation) {
return true;
return false;
}
const existingBase64 = conversation.get('profileKey');