From f55abf42950b4909618cc73baf34a975416849ba Mon Sep 17 00:00:00 2001 From: Alexander Gnauck Date: Thu, 16 Mar 2023 17:28:09 +0100 Subject: [PATCH 1/3] fix compile error current source is not compiling. This fixes the compile --- src/jingle/sdp/Protocol.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/jingle/sdp/Protocol.ts b/src/jingle/sdp/Protocol.ts index 239d00d0..8fa3a83d 100644 --- a/src/jingle/sdp/Protocol.ts +++ b/src/jingle/sdp/Protocol.ts @@ -330,7 +330,8 @@ export function convertContentToIntermediate( media.rtpParameters.headerExtensions.push({ direction: sendersToDirection(role, ext.senders || 'both'), id: ext.id, - uri: ext.uri + uri: ext.uri, + atrributes: undefined }); } } From 7d908aef3ba0f616b98d59ba1a6f7a30e9409c78 Mon Sep 17 00:00:00 2001 From: Alexander Gnauck Date: Thu, 28 Sep 2023 09:35:27 +0200 Subject: [PATCH 2/3] fix typo --- src/jingle/sdp/Protocol.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jingle/sdp/Protocol.ts b/src/jingle/sdp/Protocol.ts index 8fa3a83d..b623b36a 100644 --- a/src/jingle/sdp/Protocol.ts +++ b/src/jingle/sdp/Protocol.ts @@ -331,7 +331,7 @@ export function convertContentToIntermediate( direction: sendersToDirection(role, ext.senders || 'both'), id: ext.id, uri: ext.uri, - atrributes: undefined + attributes: undefined }); } } From bf26344264dc560237f873fd75d27bdb78c1c230 Mon Sep 17 00:00:00 2001 From: Alexander Gnauck Date: Thu, 28 Sep 2023 10:02:13 +0200 Subject: [PATCH 3/3] revert change, wasn't a typo --- src/jingle/sdp/Protocol.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jingle/sdp/Protocol.ts b/src/jingle/sdp/Protocol.ts index b623b36a..8fa3a83d 100644 --- a/src/jingle/sdp/Protocol.ts +++ b/src/jingle/sdp/Protocol.ts @@ -331,7 +331,7 @@ export function convertContentToIntermediate( direction: sendersToDirection(role, ext.senders || 'both'), id: ext.id, uri: ext.uri, - attributes: undefined + atrributes: undefined }); } }