From bbe919aa859dfec1567d1ad4f78ef878e9ec0058 Mon Sep 17 00:00:00 2001 From: askmeaboutloom Date: Fri, 22 Nov 2024 06:22:48 +0100 Subject: [PATCH] Remove excess debug messages in auth list import --- src/libserver/opcommands.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libserver/opcommands.cpp b/src/libserver/opcommands.cpp index 82c28820b1..e95934f46a 100644 --- a/src/libserver/opcommands.cpp +++ b/src/libserver/opcommands.cpp @@ -683,10 +683,8 @@ authList(Client *client, const QJsonArray &args, const QJsonObject &kwargs) SessionHistory *history = session->history(); bool sendUpdate = false; - qDebug() << list; for(const QJsonValue &value : list) { QString authId = value[QStringLiteral("a")].toString(); - qDebug() << authId; if(!authId.isEmpty()) { Client *target = session->getClientByAuthId(authId);