Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasFella committed Jul 30, 2023
1 parent f57ec5e commit 2b6250b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quotient/room.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ class Q_DECL_HIDDEN Room::Private {
return {};
}
auto& senderSession = groupSessionIt->second;
if (!senderSession.senderId().isEmpty() && senderSession.senderId() != senderId) {
if (senderSession.senderId() != "BACKUP"_ls && senderSession.senderId() != senderId) {
qCWarning(E2EE) << "Sender from event does not match sender from session";
return {};
}
Expand Down

0 comments on commit 2b6250b

Please sign in to comment.