mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-03-05 05:47:42 +00:00
Differentiate Windows Store and Mac Store.
This commit is contained in:
parent
271d929ad6
commit
3d38abce97
@ -828,9 +828,12 @@ void ConnectionPrivate::tryToSend() {
|
||||
const auto systemVersion = (_dcType == DcType::Cdn)
|
||||
? "n/a"
|
||||
: _instance->systemVersion();
|
||||
#if defined OS_MAC_STORE || defined OS_WIN_STORE
|
||||
#if defined OS_MAC_STORE
|
||||
const auto appVersion = QString::fromLatin1(AppVersionStr)
|
||||
+ " store";
|
||||
+ " mac store";
|
||||
#elif defined OS_WIN_STORE // OS_MAC_STORE
|
||||
const auto appVersion = QString::fromLatin1(AppVersionStr)
|
||||
+ " win store";
|
||||
#else // OS_MAC_STORE || OS_WIN_STORE
|
||||
const auto appVersion = QString::fromLatin1(AppVersionStr);
|
||||
#endif // OS_MAC_STORE || OS_WIN_STORE
|
||||
|
Loading…
Reference in New Issue
Block a user