Skip to content

Commit

Permalink
Do not use 'MozDontOfferDataChannel' attribute on Chrome
Browse files Browse the repository at this point in the history
git-svn-id: http://sipml5.googlecode.com/svn/trunk@180 63d8a0da-676c-2731-e3aa-b417aa27da68
  • Loading branch information
Bossiel Thioriguel committed Feb 26, 2013
1 parent fcb8f6b commit b9dbaea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tinyMEDIA/src/tmedia_session_jsep.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,13 +427,13 @@ function tmedia_session_jsep01(o_mgr) {
{ 'mandatory':
{
'OfferToReceiveAudio': !!(this.e_type.i_id & tmedia_type_e.AUDIO.i_id),
'OfferToReceiveVideo': !!(this.e_type.i_id & tmedia_type_e.VIDEO.i_id),
'MozDontOfferDataChannel': true
'OfferToReceiveVideo': !!(this.e_type.i_id & tmedia_type_e.VIDEO.i_id)
}
};

if(tsk_utils_get_navigator_friendly_name() == 'firefox'){
tmedia_session_jsep01.mozThis = this;
this.o_media_constraints.mandatory.MozDontOfferDataChannel = true;
}
}

Expand Down

0 comments on commit b9dbaea

Please sign in to comment.