From 816c685c334ce579e9cbce465bbfc19564cd7a4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Wa=C5=9Bniowski?= Date: Wed, 12 Jun 2024 16:30:45 +0200 Subject: [PATCH] feat: pr to update release version (#79) Co-authored-by: kwasniow --- src/peer-connection.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/peer-connection.ts b/src/peer-connection.ts index 3b3e0e7..ea886b9 100644 --- a/src/peer-connection.ts +++ b/src/peer-connection.ts @@ -109,6 +109,7 @@ class PeerConnection extends EventEmitter { this.emit(PeerConnection.Events.IceGatheringStateChange, ev); }; + /* eslint-disable jsdoc/require-jsdoc */ this.pc.onicecandidate = (ev: RTCPeerConnectionIceEvent) => { this.emit(PeerConnection.Events.IceCandidate, ev); };