Update manager: report Linux separately

I know the plan is to do much better OS detection - but at least Linux in
general should be called out and not be treated as "unknown".

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2014-04-02 12:55:33 -07:00
parent ede6a38bcf
commit 4ee94167f1

View file

@ -19,6 +19,8 @@ void UpdateManager::checkForUpdates()
os = "win";
#elif defined(Q_OS_MAC)
os = "osx";
#elif defined(Q_OS_LINUX)
os = "linux";
#else
os = "unknown";
#endif