Skip to content

Commit cf05a8f

Browse files
committed
post rebase fix
1 parent 5e7043f commit cf05a8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/matrixrtc/MatrixRTCSession.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ export class MatrixRTCSession extends TypedEventEmitter<
416416
() => this.memberships,
417417
transport,
418418
this.statistics,
419-
(keyBin: Uint8Array<ArrayBufferLike>, encryptionKeyIndex: number, participantId: string) => {
419+
(keyBin: Uint8Array, encryptionKeyIndex: number, participantId: string) => {
420420
this.emit(
421421
MatrixRTCSessionEvent.EncryptionKeyChanged,
422422
keyBin,
@@ -434,7 +434,7 @@ export class MatrixRTCSession extends TypedEventEmitter<
434434
() => this.memberships,
435435
transport,
436436
this.statistics,
437-
(keyBin: Uint8Array<ArrayBufferLike>, encryptionKeyIndex: number, participantId: string) => {
437+
(keyBin: Uint8Array, encryptionKeyIndex: number, participantId: string) => {
438438
this.emit(
439439
MatrixRTCSessionEvent.EncryptionKeyChanged,
440440
keyBin,

src/matrixrtc/RTCEncryptionManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export class RTCEncryptionManager implements IEncryptionManager {
8282
private transport: IKeyTransport,
8383
private statistics: Statistics,
8484
private onEncryptionKeysChanged: (
85-
keyBin: Uint8Array<ArrayBufferLike>,
85+
keyBin: Uint8Array,
8686
encryptionKeyIndex: number,
8787
participantId: ParticipantId,
8888
) => void,

0 commit comments

Comments
 (0)