2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-02 15:35:51 +00:00

fixed crash in notifyShowNext(), not always enum pinned icons

This commit is contained in:
John Preston
2015-08-16 17:42:41 +03:00
parent d32e476d96
commit 8259314721
3 changed files with 16 additions and 5 deletions

View File

@@ -1165,7 +1165,16 @@ void SettingsInner::onAskQuestionSure() {
}
void SettingsInner::onTelegramFAQ() {
QDesktopServices::openUrl(qsl("https://telegram.org/faq#general"));
QString url = qsl("https://telegram.org/faq");
if (cLang() > languageDefault && cLang() < languageCount) {
const char *code = LanguageCodes[cLang()];
if (qstr("de") == code || qstr("es") == code || qstr("it") == code || qstr("ko") == code) {
url += qsl("/") + code;
} else if (qstr("pt_BR") == code) {
url += qsl("/br");
}
}
QDesktopServices::openUrl(url);
}
void SettingsInner::chooseCustomLang() {