mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-23 07:21:22 +02:00
Improve typing
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
072fdf1cb8
commit
367049bd08
@ -104,11 +104,11 @@ export default class CallEventGrouper extends EventEmitter {
|
|||||||
return ![...this.events].some((event) => event.sender?.userId === MatrixClientPeg.get().getUserId());
|
return ![...this.events].some((event) => event.sender?.userId === MatrixClientPeg.get().getUserId());
|
||||||
}
|
}
|
||||||
|
|
||||||
private get callId(): string {
|
private get callId(): string | undefined {
|
||||||
return [...this.events][0].getContent().call_id;
|
return [...this.events][0]?.getContent()?.call_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
private get roomId(): string {
|
private get roomId(): string | undefined {
|
||||||
return [...this.events][0]?.getRoomId();
|
return [...this.events][0]?.getRoomId();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user