From 7a3e43507a85e5f43baeb5428eb40154feaf0ee7 Mon Sep 17 00:00:00 2001 From: alex-z Date: Wed, 19 Apr 2023 20:52:51 +0200 Subject: [PATCH] Iteration. Signed-off-by: alex-z --- src/gui/accountstate.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/accountstate.cpp b/src/gui/accountstate.cpp index 6bca4bff4a2b..35a037ce74c1 100644 --- a/src/gui/accountstate.cpp +++ b/src/gui/accountstate.cpp @@ -567,15 +567,15 @@ void AccountState::slotCheckServerAvailibility() || state() == AccountState::SignedOut || state() == AccountState::MaintenanceMode || state() == AccountState::AskingCredentials) { - qCInfo(lcAccountState) << "Skipping server availibility check for account" << _account->id() << "with state" << state(); + qCInfo(lcAccountState) << "Skipping server availibility check for account" << _account->davUser() << "with state" << state(); return; } - qCInfo(lcAccountState) << "Checking server availibility for account" << _account->id(); + qCInfo(lcAccountState) << "Checking server availibility for account" << _account->davUser(); const auto serverAvailibilityUrl = Utility::concatUrlPath(_account->url(), QLatin1String("/index.php/204")); auto checkServerAvailibilityJob = _account->sendRequest(QByteArrayLiteral("GET"), serverAvailibilityUrl); connect(checkServerAvailibilityJob, &SimpleNetworkJob::finishedSignal, this, [this](QNetworkReply *reply) { if (reply->attribute(QNetworkRequest::HttpStatusCodeAttribute) == 204) { - qCInfo(lcAccountState) << "Server is now available for account" << _account->id(); + qCInfo(lcAccountState) << "Server is now available for account" << _account->davUser(); _lastCheckConnectionTimer.invalidate(); resetRetryCount(); QMetaObject::invokeMethod(this, "slotCheckConnection", Qt::QueuedConnection);