Merge pull request #5506 from matrix-org/dbkr/silent_call_end_for_non_started_calls
Don't play call end sound for calls that never started
This commit is contained in:
commit
3037aac59a
1 changed files with 2 additions and 1 deletions
|
@ -341,7 +341,8 @@ export default class CallHandler {
|
|||
title: _t("Answered Elsewhere"),
|
||||
description: _t("The call was answered on another device."),
|
||||
});
|
||||
} else {
|
||||
} else if (oldState !== CallState.Fledgling) {
|
||||
// don't play the end-call sound for calls that never got off the ground
|
||||
this.play(AudioID.CallEnd);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue