From 945a5365f96ec61a5fb955a6d76b7107577b5bd9 Mon Sep 17 00:00:00 2001 From: infinite-persistence Date: Fri, 19 Mar 2021 23:33:13 +0800 Subject: [PATCH] Corrected `channel_language` order --- ui/page/youtubeSync/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/page/youtubeSync/view.jsx b/ui/page/youtubeSync/view.jsx index e625bb436..aba106956 100644 --- a/ui/page/youtubeSync/view.jsx +++ b/ui/page/youtubeSync/view.jsx @@ -70,9 +70,9 @@ export default function YoutubeSync(props: Props) { Lbryio.call('yt', 'new', { type: 'sync', immediate_sync: true, + channel_language: language, desired_lbry_channel_name: `@${channel}`, return_url: `https://${DOMAIN}/$/${inSignUpFlow ? PAGES.AUTH : PAGES.YOUTUBE_SYNC}`, - channel_language: language, }).then((ytAuthUrl) => { // react-router isn't needed since it's a different domain window.location.href = ytAuthUrl;