mirror of
https://github.com/vale981/tdesktop
synced 2025-03-06 10:11:41 -05:00
fixed crash in notifyShowNext(), not always enum pinned icons
This commit is contained in:
parent
d32e476d96
commit
8259314721
3 changed files with 16 additions and 5 deletions
|
@ -2219,7 +2219,9 @@ void RegisterCustomScheme() {
|
|||
|
||||
void psNewVersion() {
|
||||
RegisterCustomScheme();
|
||||
CheckPinnedAppUserModelId();
|
||||
if (Local::oldSettingsVersion() < 8050) {
|
||||
CheckPinnedAppUserModelId();
|
||||
}
|
||||
}
|
||||
|
||||
void psExecUpdater() {
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -1467,8 +1467,8 @@ void Window::notifyShowNext(NotifyWindow *remove) {
|
|||
uint64 ms = getms(true);
|
||||
History *history = notifyItem->history();
|
||||
NotifyWhenMaps::iterator j = notifyWhenMaps.find(history);
|
||||
|
||||
if (j == notifyWhenMaps.end()) {
|
||||
bool notifyWhenFound = (j != notifyWhenMaps.cend());
|
||||
if (!notifyWhenFound) {
|
||||
history->clearNotifications();
|
||||
} else {
|
||||
HistoryItem *nextNotify = 0;
|
||||
|
@ -1516,7 +1516,7 @@ void Window::notifyShowNext(NotifyWindow *remove) {
|
|||
|
||||
if (!history->hasNotification()) {
|
||||
if (notifyWaiter != notifyWaiters.cend()) notifyWaiters.erase(notifyWaiter);
|
||||
if (j != notifyWhenMaps.cend()) notifyWhenMaps.erase(j);
|
||||
if (notifyWhenFound) notifyWhenMaps.erase(j);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue