aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-04-18 14:36:36 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2022-04-18 14:36:36 +0200
commitac77997a7afbdd6420232109c213e47ee5b0dc24 (patch)
treee82e341c63d819b9072bbdc799b3b40eefa11e2a /launcher/ui/pages
parentfd7745cbebf55f5bcfccc16500fff0e67a789169 (diff)
downloadPrismLauncher-ac77997a7afbdd6420232109c213e47ee5b0dc24.tar.gz
PrismLauncher-ac77997a7afbdd6420232109c213e47ee5b0dc24.tar.bz2
PrismLauncher-ac77997a7afbdd6420232109c213e47ee5b0dc24.zip
fix: handle network errors when downloading modlist
Diffstat (limited to 'launcher/ui/pages')
-rw-r--r--launcher/ui/pages/modplatform/ModModel.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/launcher/ui/pages/modplatform/ModModel.cpp b/launcher/ui/pages/modplatform/ModModel.cpp
index da0331b5..e82e1cdb 100644
--- a/launcher/ui/pages/modplatform/ModModel.cpp
+++ b/launcher/ui/pages/modplatform/ModModel.cpp
@@ -192,13 +192,14 @@ void ListModel::searchRequestFinished(QJsonDocument& doc)
void ListModel::searchRequestFailed(QString reason)
{
- if (jobPtr->first()->m_reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt() == 409) {
+ if (!jobPtr->first()->m_reply) {
+ // Network error
+ QMessageBox::critical(nullptr, tr("Error"), tr("A network error occurred. Could not load mods."));
+ } else if (jobPtr->first()->m_reply && jobPtr->first()->m_reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt() == 409) {
// 409 Gone, notify user to update
QMessageBox::critical(nullptr, tr("Error"),
//: %1 refers to the launcher itself
QString("%1 %2").arg(m_parent->displayName()).arg(tr("API version too old!\nPlease update %1!").arg(BuildConfig.LAUNCHER_NAME)));
- // self-destruct
- (dynamic_cast<ModDownloadDialog*>((dynamic_cast<ModPage*>(parent()))->parentWidget()))->reject();
}
jobPtr.reset();