Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewFerr authored and hughns committed Sep 27, 2024
1 parent d80f7f1 commit d34f003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/matrixrtc/MatrixRTCSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ export class MatrixRTCSession extends TypedEventEmitter<MatrixRTCSessionEvent, M
public *getEncryptionKeys(): IterableIterator<[string, Array<Uint8Array>]> {
// the returned array doesn't contain the timestamps
for (const [participantId, keys] of this.encryptionKeys.entries()) {
yield [participantId, keys.map(k => k.key)];
yield [participantId, keys.map((k) => k.key)];
}
}

Expand Down

0 comments on commit d34f003

Please sign in to comment.