1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00

Fixed lint errors

This commit is contained in:
Ayush PS
2021-03-25 23:38:18 +05:30
parent 20b20738a7
commit b42efa4a07

View File

@@ -339,7 +339,6 @@ export class MatrixCall extends EventEmitter {
const constraints = getUserMediaContraints(ConstraintsType.Audio); const constraints = getUserMediaContraints(ConstraintsType.Audio);
this.type = CallType.Voice; this.type = CallType.Voice;
await this.placeCallWithConstraints(constraints); await this.placeCallWithConstraints(constraints);
} }
/** /**
@@ -358,7 +357,6 @@ export class MatrixCall extends EventEmitter {
const constraints = getUserMediaContraints(ConstraintsType.Video); const constraints = getUserMediaContraints(ConstraintsType.Video);
this.type = CallType.Video; this.type = CallType.Video;
await this.placeCallWithConstraints(constraints); await this.placeCallWithConstraints(constraints);
} }
/** /**