made caller/concurrent rules tighter

This commit is contained in:
fourtf
2019-08-20 23:29:11 +02:00
parent 7d842e6cf7
commit 14222f84f2
9 changed files with 36 additions and 15 deletions
+2 -2
View File
@@ -93,7 +93,7 @@ void LogsPopup::getLogviewerLogs(const QString &roomID)
NetworkRequest(url)
.caller(this)
.onError([this](int errorCode) {
.onError([this](int /*errorCode*/) {
this->getOverrustleLogs();
return true;
})
@@ -138,7 +138,7 @@ void LogsPopup::getOverrustleLogs()
NetworkRequest(url)
.caller(this)
.onError([this](int errorCode) {
.onError([this](int /*errorCode*/) {
auto box = new QMessageBox(
QMessageBox::Information, "Error getting logs",
"No logs could be found for channel " + this->channelName_);