This commit is contained in:
Timo
2024-11-05 12:55:48 +01:00
parent 14919cae13
commit b5208ffeae
3 changed files with 2 additions and 29 deletions

View File

@@ -176,7 +176,6 @@ class UserMedia {
member: RoomMember | undefined,
participant: LocalParticipant | RemoteParticipant | undefined,
encryptionSystem: EncryptionSystem,
rtcSession: MatrixRTCSession,
) {
this.participant = new BehaviorSubject(participant);
@@ -186,7 +185,6 @@ class UserMedia {
member,
this.participant.asObservable() as Observable<LocalParticipant>,
encryptionSystem,
rtcSession,
);
} else {
this.vm = new RemoteUserMediaViewModel(
@@ -196,7 +194,6 @@ class UserMedia {
RemoteParticipant | undefined
>,
encryptionSystem,
rtcSession,
);
}
@@ -440,7 +437,6 @@ export class CallViewModel extends ViewModel {
member,
participant,
this.encryptionSystem,
this.matrixRTCSession,
),
];
}
@@ -494,7 +490,6 @@ export class CallViewModel extends ViewModel {
undefined,
participant,
this.encryptionSystem,
this.matrixRTCSession,
),
];
}