From 60f91ebce471e4ac4128829129941f28ebe65a27 Mon Sep 17 00:00:00 2001 From: Crist Ye Date: Mon, 2 Nov 2020 15:14:57 +0800 Subject: [PATCH] Using MS/Apple official names for stores (#8959) --- Telegram/SourceFiles/mtproto/session_private.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Telegram/SourceFiles/mtproto/session_private.cpp b/Telegram/SourceFiles/mtproto/session_private.cpp index c5598031c2..8bbcf7caa3 100644 --- a/Telegram/SourceFiles/mtproto/session_private.cpp +++ b/Telegram/SourceFiles/mtproto/session_private.cpp @@ -634,18 +634,18 @@ void SessionPrivate::tryToSend() { : _instance->systemVersion(); #if defined OS_MAC_STORE const auto appVersion = QString::fromLatin1(AppVersionStr) - + " mac store"; + + " Mac App Store"; #elif defined OS_WIN_STORE // OS_MAC_STORE const auto appVersion = QString::fromLatin1(AppVersionStr) - + " win store"; + + " Microsoft Store"; #elif defined Q_OS_UNIX && !defined Q_OS_MAC // OS_MAC_STORE || OS_WIN_STORE const auto appVersion = [] { if (Platform::InFlatpak()) { return QString::fromLatin1(AppVersionStr) - + " flatpak"; + + " Flatpak"; } else if (Platform::InSnap()) { return QString::fromLatin1(AppVersionStr) - + " snap"; + + " Snap"; } return QString::fromLatin1(AppVersionStr); }();