Fix status error message

This commit is contained in:
Martchus 2016-10-02 22:26:12 +02:00
parent f82ed3ba47
commit d03b8d8a74
1 changed files with 2 additions and 2 deletions

View File

@ -818,13 +818,13 @@ void SyncthingConnection::readStatus()
m_hasStatus = true;
continueConnecting();
} else {
emit error(tr("Unable to parse Syncthing config: ") + jsonError.errorString());
emit error(tr("Unable to parse Syncthing status: ") + jsonError.errorString());
}
break;
} case QNetworkReply::OperationCanceledError:
return; // intended, not an error
default:
emit error(tr("Unable to request Syncthing config: ") + reply->errorString());
emit error(tr("Unable to request Syncthing status: ") + reply->errorString());
}
}