diff options
author | Tobias Fella <fella@posteo.de> | 2021-09-11 16:18:35 +0200 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-09-11 21:02:47 +0200 |
commit | 0209be8305aa38722a3d25593ae71fbb3ac05e52 (patch) | |
tree | ab80c8b140f483c408209922a0c72b06912bd3a1 /lib/room.cpp | |
parent | 9e548e0625a819052cd10d5c4bf129dde649a6a4 (diff) | |
download | libquotient-0209be8305aa38722a3d25593ae71fbb3ac05e52.tar.gz libquotient-0209be8305aa38722a3d25593ae71fbb3ac05e52.zip |
Add convenience function for activating encryption and fix
EncryptionEvent constructor
Diffstat (limited to 'lib/room.cpp')
-rw-r--r-- | lib/room.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index c6cca2ea..ced313a4 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -3009,3 +3009,12 @@ bool MemberSorter::operator()(User* u1, QStringView u2name) const return n1.localeAwareCompare(n2) < 0; } + +void Room::activateEncryption() +{ + if(usesEncryption()) { + qCWarning(E2EE) << "Room" << objectName() << "is already encrypted"; + return; + } + setState<EncryptionEvent>(EncryptionEventContent::MegolmV1AesSha2); +} |