aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/connectiondata.cpp6
-rw-r--r--lib/room.cpp1
2 files changed, 5 insertions, 2 deletions
diff --git a/lib/connectiondata.cpp b/lib/connectiondata.cpp
index e2a0f06f..94cab29b 100644
--- a/lib/connectiondata.cpp
+++ b/lib/connectiondata.cpp
@@ -86,7 +86,11 @@ ConnectionData::ConnectionData(QUrl baseUrl)
});
}
-ConnectionData::~ConnectionData() = default;
+ConnectionData::~ConnectionData()
+{
+ d->rateLimiter.disconnect();
+ d->rateLimiter.stop();
+}
void ConnectionData::submit(BaseJob* job)
{
diff --git a/lib/room.cpp b/lib/room.cpp
index 198cef0d..71d76f66 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -1937,7 +1937,6 @@ RoomEventPtr makeRedacted(const RoomEvent& target,
// clang-format off
static const QStringList keepKeys { EventIdKey, TypeKey,
QStringLiteral("room_id"), QStringLiteral("sender"), StateKeyKey,
- QStringLiteral("prev_content"), ContentKey,
QStringLiteral("hashes"), QStringLiteral("signatures"),
QStringLiteral("depth"), QStringLiteral("prev_events"),
QStringLiteral("prev_state"), QStringLiteral("auth_events"),