update translations

This commit is contained in:
Luke Pulverenti
2014-06-24 17:45:21 -04:00
parent 34bc54263e
commit a55d156fd6
58 changed files with 612 additions and 1194 deletions

View File

@@ -1061,7 +1061,8 @@ namespace MediaBrowser.Api.Playback
// Make sure we don't request a bitrate higher than the source
var currentBitrate = audioStream == null ? request.AudioBitRate.Value : audioStream.BitRate ?? request.AudioBitRate.Value;
return Math.Min(currentBitrate, request.AudioBitRate.Value);
return request.AudioBitRate.Value;
//return Math.Min(currentBitrate, request.AudioBitRate.Value);
}
return null;