mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
Iteration.
Signed-off-by: alex-z <blackslayer4@gmail.com>
This commit is contained in:
parent
cd4b72967c
commit
7a3e43507a
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue