Webpack build for branch 11.3-dev: 92b421607e

This commit is contained in:
Travis CI 2018-04-19 00:40:28 +00:00
parent 763819ecc1
commit b0282bfe94
2 changed files with 2 additions and 2 deletions

View file

@ -17837,7 +17837,7 @@ class RESTMethods {
updateChannel(channel, _data, reason) {
const data = {};
data.name = (_data.name || channel.name).trim();
data.topic = _data.topic || channel.topic;
data.topic = typeof _data.topic === 'undefined' ? channel.topic : _data.topic;
data.position = _data.position || channel.position;
data.bitrate = _data.bitrate || (channel.bitrate ? channel.bitrate * 1000 : undefined);
data.user_limit = typeof _data.userLimit !== 'undefined' ? _data.userLimit : channel.userLimit;

File diff suppressed because one or more lines are too long