Webpack build for branch 11.3-dev: 695ff1e70f

This commit is contained in:
Travis CI 2018-07-02 18:48:22 +00:00
parent 794a26d05b
commit ed121ff418
2 changed files with 2 additions and 2 deletions

View file

@ -18332,7 +18332,7 @@ class RESTMethods {
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;
data.parent_id = _data.parent === null ? null : _data.parent || (channel.parent ? channel.parent.id : undefined);
data.parent_id = _data.parent;
return this.rest.makeRequest('patch', Endpoints.Channel(channel), true, data, undefined, reason).then(newData =>
this.client.actions.ChannelUpdate.handle(newData).updated
);

File diff suppressed because one or more lines are too long