1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

Update src/components/views/voip/CallPreview.tsx

Co-authored-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Dariusz Niemczyk
2021-08-03 15:00:55 +02:00
committed by Dariusz Niemczyk
parent f592d37f39
commit 466151a10c

View File

@@ -144,9 +144,10 @@ export default class CallPreview extends React.Component<IProps, IState> {
private onAction = (payload: ActionPayload) => { private onAction = (payload: ActionPayload) => {
switch (payload.action) { switch (payload.action) {
case 'call_state': {
// listen for call state changes to prod the render method, which // listen for call state changes to prod the render method, which
// may hide the global CallView if the call it is tracking is dead // may hide the global CallView if the call it is tracking is dead
case 'call_state': {
this.updateCalls(); this.updateCalls();
break; break;
} }
@@ -197,4 +198,3 @@ export default class CallPreview extends React.Component<IProps, IState> {
return <PersistentApp />; return <PersistentApp />;
} }
} }