Add the version number if we cannot detect the platform on Windows
This commit is contained in:
parent
a35ad875d2
commit
5e8a3c965a
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ LiveMessageToken LiveObject::generateVersionToken() {
|
||||||
token.dictVal["os-version"] = LiveMessageToken("win7");
|
token.dictVal["os-version"] = LiveMessageToken("win7");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
token.dictVal["os-version"] = LiveMessageToken("unknown");
|
token.dictVal["os-version"] = LiveMessageToken(QString("unknown %1").arg(QSysInfo::WindowsVersion));
|
||||||
}
|
}
|
||||||
#elif defined(Q_OS_MAC)
|
#elif defined(Q_OS_MAC)
|
||||||
token.dictVal["os"] = LiveMessageToken("macosx");
|
token.dictVal["os"] = LiveMessageToken("macosx");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue