diff options
-rw-r--r-- | lib/connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index 7400c82d..ca866429 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -619,7 +619,7 @@ void Connection::onSyncSuccess(SyncData&& data, bool fromCache) if (is<IgnoredUsersEvent>(accountEvent)) qCDebug(MAIN) << "Users ignored by" << userId() << "updated:" - << QStringList::fromSet(ignoredUsers()).join(','); + << QStringList(ignoredUsers().values()).join(','); auto& currentData = d->accountData[accountEvent.matrixType()]; // A polymorphic event-specific comparison might be a bit |