|
@@ -287,7 +287,10 @@ JingleSession.prototype.sendIceCandidates = function (candidates) {
|
287
|
287
|
if (SDPUtil.find_line(this.localSDP.media[mid], 'a=fingerprint:', this.localSDP.session)) {
|
288
|
288
|
var tmp = SDPUtil.parse_fingerprint(SDPUtil.find_line(this.localSDP.media[mid], 'a=fingerprint:', this.localSDP.session));
|
289
|
289
|
tmp.required = true;
|
290
|
|
- cand.c('fingerprint').t(tmp.fingerprint);
|
|
290
|
+ cand.c(
|
|
291
|
+ 'fingerprint',
|
|
292
|
+ {xmlns: 'urn:xmpp:jingle:apps:dtls:0'})
|
|
293
|
+ .t(tmp.fingerprint);
|
291
|
294
|
delete tmp.fingerprint;
|
292
|
295
|
cand.attrs(tmp);
|
293
|
296
|
cand.up();
|