mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Replaced caller in LogsPopup.cpp.
This commit is contained in:
parent
d3003c171a
commit
a0ba2154ae
1 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ void LogsPopup::getLogviewerLogs(const QString &roomID)
|
||||||
.arg(this->channelName_, this->userName_);
|
.arg(this->channelName_, this->userName_);
|
||||||
|
|
||||||
NetworkRequest req(url);
|
NetworkRequest req(url);
|
||||||
req.setCaller(QThread::currentThread());
|
req.setCaller(this);
|
||||||
|
|
||||||
req.onError([this](int errorCode) {
|
req.onError([this](int errorCode) {
|
||||||
this->getOverrustleLogs();
|
this->getOverrustleLogs();
|
||||||
|
@ -138,7 +138,7 @@ void LogsPopup::getOverrustleLogs()
|
||||||
.arg(this->channelName_, this->userName_);
|
.arg(this->channelName_, this->userName_);
|
||||||
|
|
||||||
NetworkRequest req(url);
|
NetworkRequest req(url);
|
||||||
req.setCaller(QThread::currentThread());
|
req.setCaller(this);
|
||||||
req.onError([this](int errorCode) {
|
req.onError([this](int errorCode) {
|
||||||
auto box = new QMessageBox(
|
auto box = new QMessageBox(
|
||||||
QMessageBox::Information, "Error getting logs",
|
QMessageBox::Information, "Error getting logs",
|
||||||
|
|
Loading…
Reference in a new issue