diff --git a/src/singletons/updatemanager.cpp b/src/singletons/updatemanager.cpp index 9517fb4b4..feec5db1a 100644 --- a/src/singletons/updatemanager.cpp +++ b/src/singletons/updatemanager.cpp @@ -53,6 +53,12 @@ void UpdateManager::installUpdates() req.setTimeout(600000); req.onError([this](int) -> bool { this->setStatus_(DownloadFailed); + + QMessageBox *box = new QMessageBox(QMessageBox::Information, "Chatterino Update", + "Failed while trying to download the update."); + box->setAttribute(Qt::WA_DeleteOnClose); + box->show(); + return true; }); req.get([this](QByteArray &object) {