Accept profile keys for unknown members in groups

This commit is contained in:
automated-signal
2023-10-16 10:26:07 -07:00
committed by GitHub
parent 37b3a6de4b
commit 04f2b24ec6
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');