diff options
author | Jamie Mansfield <jmansfield@cadixdev.org> | 2022-05-02 15:48:12 +0100 |
---|---|---|
committer | Jamie Mansfield <jmansfield@cadixdev.org> | 2022-05-29 00:04:28 +0100 |
commit | febdb85f960f105ac9d85fdafddbe5c0c74673f1 (patch) | |
tree | 593edab45fbc8ed84307081e3f10b10811d24409 /launcher/modplatform | |
parent | 96b76c8f5cd54111303ce642998d8fa020d9c0a5 (diff) | |
download | PrismLauncher-febdb85f960f105ac9d85fdafddbe5c0c74673f1.tar.gz PrismLauncher-febdb85f960f105ac9d85fdafddbe5c0c74673f1.tar.bz2 PrismLauncher-febdb85f960f105ac9d85fdafddbe5c0c74673f1.zip |
ModpacksCH: Use ModpacksCH rather than FTB in error messages
Diffstat (limited to 'launcher/modplatform')
-rw-r--r-- | launcher/modplatform/modpacksch/FTBPackInstallTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp b/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp index 47143c9d..c324ffda 100644 --- a/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp +++ b/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp @@ -99,7 +99,7 @@ void PackInstallTask::onDownloadSucceeded() QJsonParseError parse_error; QJsonDocument doc = QJsonDocument::fromJson(response, &parse_error); if(parse_error.error != QJsonParseError::NoError) { - qWarning() << "Error while parsing JSON response from FTB at " << parse_error.offset << " reason: " << parse_error.errorString(); + qWarning() << "Error while parsing JSON response from ModpacksCH at " << parse_error.offset << " reason: " << parse_error.errorString(); qWarning() << response; return; } |