Allow picking up calls from the timeline

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-06-01 10:03:17 +02:00
parent dac741d8b9
commit 30365ca1ad
No known key found for this signature in database
GPG key ID: 9760693FDD98A790
2 changed files with 22 additions and 3 deletions

View file

@ -35,15 +35,15 @@ export default class CallEventGrouper extends EventEmitter {
call: MatrixCall;
state: CallEventGrouperState;
public answerCall() {
public answerCall = () => {
this.call?.answer();
}
public rejectCall() {
public rejectCall = () => {
this.call?.reject();
}
public callBack() {
public callBack = () => {
}