From d97a8c63f91ee6477bea48dcac04886ee1fce706 Mon Sep 17 00:00:00 2001 From: Boris Grozev Date: Fri, 14 Nov 2014 21:17:39 +0200 Subject: [PATCH] Fix converting a format with multiple parameters from Jingle to SDP. --- libs/strophe/strophe.jingle.sdp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/strophe/strophe.jingle.sdp.js b/libs/strophe/strophe.jingle.sdp.js index a85b1a1e7..3abda55cb 100644 --- a/libs/strophe/strophe.jingle.sdp.js +++ b/libs/strophe/strophe.jingle.sdp.js @@ -637,7 +637,7 @@ SDP.prototype.jingle2media = function (content) { media += SDPUtil.build_rtpmap(this) + '\r\n'; if ($(this).find('>parameter').length) { media += 'a=fmtp:' + this.getAttribute('id') + ' '; - media += $(this).find('parameter').map(function () { return (this.getAttribute('name') ? (this.getAttribute('name') + '=') : '') + this.getAttribute('value'); }).get().join(';'); + media += $(this).find('parameter').map(function () { return (this.getAttribute('name') ? (this.getAttribute('name') + '=') : '') + this.getAttribute('value'); }).get().join('; '); media += '\r\n'; } // xep-0293