From e3aacc807218a9c97ff34c8f8c7c7ff50c6e10c3 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sat, 15 Apr 2017 20:51:04 +0300 Subject: [PATCH] Don't change notification sound to empty on mute. If notifications are muted no one from official apps play sound. So there is no need to turn the sound off, otherwise if you enable the notifications from a different app the sound stays off. Enable the sound (change to "default") when turning notifications on. --- Telegram/SourceFiles/mainwidget.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/mainwidget.cpp b/Telegram/SourceFiles/mainwidget.cpp index 46aabc572..114227715 100644 --- a/Telegram/SourceFiles/mainwidget.cpp +++ b/Telegram/SourceFiles/mainwidget.cpp @@ -4016,7 +4016,9 @@ void MainWidget::updateNotifySetting(PeerData *peer, NotifySettingStatus notify, } if (peer->notify != EmptyNotifySettings && peer->notify != UnknownNotifySettings) { if (notify != NotifySettingDontChange) { - peer->notify->sound = (notify == NotifySettingSetMuted) ? "" : "default"; + if ((notify != NotifySettingSetMuted) && peer->notify->sound.isEmpty()) { + peer->notify->sound = qsl("default"); + } peer->notify->mute = (notify == NotifySettingSetMuted) ? (unixtime() + muteFor) : 0; } if (silent == SilentNotifiesSetSilent) {