mirror of https://github.com/vector-im/riot-web
Don't play call end sound for calls that never started
parent
7bd2f2c6ba
commit
453575d70a
|
@ -341,7 +341,8 @@ export default class CallHandler {
|
||||||
title: _t("Answered Elsewhere"),
|
title: _t("Answered Elsewhere"),
|
||||||
description: _t("The call was answered on another device."),
|
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);
|
this.play(AudioID.CallEnd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue