diff options
author | Tobias Fella <fella@posteo.de> | 2021-08-31 00:48:23 +0200 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-12-01 21:56:11 +0100 |
commit | a30d457161fcaadfe944e4411d4b0e487e856178 (patch) | |
tree | a89f24bf937c913b55f79833b258254f7406430a /lib | |
parent | d04543ba00335d87a872b0f0c8ff35c85301e096 (diff) | |
download | libquotient-a30d457161fcaadfe944e4411d4b0e487e856178.tar.gz libquotient-a30d457161fcaadfe944e4411d4b0e487e856178.zip |
Fix build without E2EE
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connection.cpp | 2 | ||||
-rw-r--r-- | lib/connection.h | 2 | ||||
-rw-r--r-- | lib/room.cpp | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index aaa17cdd..98686ed0 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -259,7 +259,9 @@ public: Connection::Connection(const QUrl& server, QObject* parent) : QObject(parent), d(new Private(std::make_unique<ConnectionData>(server))) { +#ifdef Quotient_E2EE_ENABLED d->encryptionManager = new EncryptionManager(this); +#endif d->q = this; // All d initialization should occur before this line } diff --git a/lib/connection.h b/lib/connection.h index 6b1ecdae..c351f93e 100644 --- a/lib/connection.h +++ b/lib/connection.h @@ -648,7 +648,9 @@ public Q_SLOTS: /** \deprecated Do not use this directly, use Room::leaveRoom() instead */ virtual LeaveRoomJob* leaveRoom(Room* room); +#ifdef Quotient_E2EE_ENABLED void encryptionUpdate(Room *room); +#endif Q_SIGNALS: /// \brief Initial server resolution has failed /// diff --git a/lib/room.cpp b/lib/room.cpp index 3a894b9b..57914db4 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -475,6 +475,7 @@ Room::Room(Connection* connection, QString id, JoinState initialJoinState) emit baseStateLoaded(); return this == r; // loadedRoomState fires only once per room }); +#ifdef Quotient_E2EE_ENABLED connectSingleShot(this, &Room::encryption, this, [=](){ connection->encryptionUpdate(this); }); @@ -483,6 +484,7 @@ Room::Room(Connection* connection, QString id, JoinState initialJoinState) connection->encryptionUpdate(this); } }); +#endif qCDebug(STATE) << "New" << terse << initialJoinState << "Room:" << id; } |