Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
use real equals
Browse files Browse the repository at this point in the history
Co-authored-by: Travis Ralston <[email protected]>
  • Loading branch information
dbkr and turt2live authored Oct 16, 2020
1 parent 7ad3666 commit 4a26199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CallHandler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4a26199

Please sign in to comment.