Skip to content

Commit

Permalink
Fix wrong max audio bandwidth setting (#1126)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcague authored Jan 15, 2018
1 parent a255d03 commit 340ef69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erizo_controller/erizoClient/src/utils/SdpHelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ SdpHelpers.setMaxBW = (sdp, spec) => {
if (spec.audio && spec.maxAudioBW) {
const audio = sdp.getMedia('audio');
if (audio) {
audio.setBitrate(spec.maxVideoBW);
audio.setBitrate(spec.maxAudioBW);
}
}
};
Expand Down

0 comments on commit 340ef69

Please sign in to comment.