support channel language update
This commit is contained in:
parent
3f14b93cbc
commit
16c6ba1a24
2 changed files with 2 additions and 10 deletions
6
dist/bundle.es.js
vendored
6
dist/bundle.es.js
vendored
|
@ -3510,7 +3510,7 @@ function doUpdateChannel(params, cb) {
|
||||||
email: params.email,
|
email: params.email,
|
||||||
tags: [],
|
tags: [],
|
||||||
replace: true,
|
replace: true,
|
||||||
languages: [],
|
languages: params.languages || [],
|
||||||
locations: [],
|
locations: [],
|
||||||
blocking: true
|
blocking: true
|
||||||
};
|
};
|
||||||
|
@ -3525,10 +3525,6 @@ function doUpdateChannel(params, cb) {
|
||||||
updateParams.locations = channelClaim.value.locations;
|
updateParams.locations = channelClaim.value.locations;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (channelClaim && channelClaim.value && channelClaim.value.languages) {
|
|
||||||
updateParams.languages = channelClaim.value.languages;
|
|
||||||
}
|
|
||||||
|
|
||||||
return lbryProxy.channel_update(updateParams).then(result => {
|
return lbryProxy.channel_update(updateParams).then(result => {
|
||||||
const channelClaim = result.outputs[0];
|
const channelClaim = result.outputs[0];
|
||||||
dispatch({
|
dispatch({
|
||||||
|
|
|
@ -441,7 +441,7 @@ export function doUpdateChannel(params: any, cb: any) {
|
||||||
email: params.email,
|
email: params.email,
|
||||||
tags: [],
|
tags: [],
|
||||||
replace: true,
|
replace: true,
|
||||||
languages: [],
|
languages: params.languages || [],
|
||||||
locations: [],
|
locations: [],
|
||||||
blocking: true,
|
blocking: true,
|
||||||
};
|
};
|
||||||
|
@ -456,10 +456,6 @@ export function doUpdateChannel(params: any, cb: any) {
|
||||||
updateParams.locations = channelClaim.value.locations;
|
updateParams.locations = channelClaim.value.locations;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (channelClaim && channelClaim.value && channelClaim.value.languages) {
|
|
||||||
updateParams.languages = channelClaim.value.languages;
|
|
||||||
}
|
|
||||||
|
|
||||||
return Lbry.channel_update(updateParams)
|
return Lbry.channel_update(updateParams)
|
||||||
.then((result: ChannelUpdateResponse) => {
|
.then((result: ChannelUpdateResponse) => {
|
||||||
const channelClaim = result.outputs[0];
|
const channelClaim = result.outputs[0];
|
||||||
|
|
Loading…
Reference in a new issue