mirror of https://github.com/vector-im/riot-web
Update src/components/views/voip/CallPreview.tsx
Co-authored-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
parent
f592d37f39
commit
466151a10c
|
@ -144,9 +144,10 @@ export default class CallPreview extends React.Component<IProps, IState> {
|
|||
|
||||
private onAction = (payload: ActionPayload) => {
|
||||
switch (payload.action) {
|
||||
// listen for call state changes to prod the render method, which
|
||||
// may hide the global CallView if the call it is tracking is dead
|
||||
case 'call_state': {
|
||||
// listen for call state changes to prod the render method, which
|
||||
// may hide the global CallView if the call it is tracking is dead
|
||||
|
||||
this.updateCalls();
|
||||
break;
|
||||
}
|
||||
|
@ -197,4 +198,3 @@ export default class CallPreview extends React.Component<IProps, IState> {
|
|||
return <PersistentApp />;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue