From a30d457161fcaadfe944e4411d4b0e487e856178 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Tue, 31 Aug 2021 00:48:23 +0200 Subject: Fix build without E2EE --- lib/connection.cpp | 2 ++ lib/connection.h | 2 ++ lib/room.cpp | 2 ++ 3 files changed, 6 insertions(+) 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(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; } -- cgit v1.2.3