Skip to content

Commit

Permalink
Haiku: send proper platform string from updater
Browse files Browse the repository at this point in the history
Just for the sake of it.
  • Loading branch information
mmuman committed Feb 4, 2020
1 parent 6b42ac6 commit e76c526
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gui/updater/updater.cpp
Expand Up @@ -79,6 +79,8 @@ QUrlQuery Updater::getQueryParams()
platform = QLatin1String("win32");
} else if (Utility::isMac()) {
platform = QLatin1String("macos");
} else if (Utility::isHaiku()) {
platform = QLatin1String("haiku");
}

QString sysInfo = getSystemInfo();
Expand Down

0 comments on commit e76c526

Please sign in to comment.