Skip to content

Commit

Permalink
Fix missing QStringLiteral
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOneRing authored and fmoc committed Sep 6, 2022
1 parent f792307 commit 867265d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/updater/updater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ QUrlQuery Updater::getQueryParams()
if (Utility::isLinux()) {
#ifdef WITH_APPIMAGEUPDATER
if (Utility::runningInAppImage()) {
platform = "linux-appimage-" + QSysInfo::buildCpuArchitecture();
platform = QStringLiteral("linux-appimage-") + QSysInfo::buildCpuArchitecture();
} else {
#endif
platform = QStringLiteral("linux");
Expand Down

0 comments on commit 867265d

Please sign in to comment.