2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-05 08:55:59 +00:00

Added sound notification when recording of group call is started.

This commit is contained in:
23rd
2025-07-22 16:36:35 +03:00
committed by John Preston
parent 15706a7af8
commit 133effef0e
6 changed files with 10 additions and 0 deletions

View File

@@ -164,6 +164,8 @@ void Instance::Delegate::groupCallPlaySound(GroupCallSound sound) {
case GroupCallSound::Ended: return "group_call_end";
case GroupCallSound::AllowedToSpeak: return "group_call_allowed";
case GroupCallSound::Connecting: return "group_call_connect";
case GroupCallSound::RecordingStarted:
return "group_call_recording_start";
}
Unexpected("GroupCallSound in Instance::groupCallPlaySound.");
}());