use real equals

Co-authored-by: Travis Ralston <travpc@gmail.com>
This commit is contained in:
David Baker 2020-10-16 20:28:20 +01:00 committed by GitHub
parent 7ad366603a
commit 4a26199a75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -240,7 +240,7 @@ export default class CallHandler {
this.play(AudioID.Busy);
let title;
let description;
if (call.hangupReason == CallErrorCode.UserHangup) {
if (call.hangupReason === CallErrorCode.UserHangup) {
title = _t("Call Declined");
description = _t("The other party declined the call.");
} else if (call.hangupReason === CallErrorCode.InviteTimeout) {