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

Commit

Permalink
Fix calls showing as 'connecting' after hangup (#10223)
Browse files Browse the repository at this point in the history
  • Loading branch information
robintown committed Feb 22, 2023
1 parent 2dde23a commit 1a08c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/structures/LegacyCallEventGrouper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const CONNECTING_STATES = [
CallState.CreateAnswer,
];

const SUPPORTED_STATES = [CallState.Connected, CallState.Ringing];
const SUPPORTED_STATES = [CallState.Connected, CallState.Ringing, CallState.Ended];

export enum CustomCallState {
Missed = "missed",
Expand Down

0 comments on commit 1a08c6b

Please sign in to comment.