From 18e94204ed5fd1e1650315c7c1cbf6cdaf169bfc Mon Sep 17 00:00:00 2001 From: ChunkyProgrammer <78101139+ChunkyProgrammer@users.noreply.github.com> Date: Sun, 5 Sep 2021 18:36:42 -0400 Subject: [PATCH] fix importing csv for other languages (#417) --- src/components/ImportPage.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/components/ImportPage.vue b/src/components/ImportPage.vue index ecde57b7..f164f335 100644 --- a/src/components/ImportPage.vue +++ b/src/components/ImportPage.vue @@ -79,7 +79,8 @@ export default { }, methods: { fileChange() { - this.$refs.fileSelector.files[0].text().then(text => { + const file = this.$refs.fileSelector.files[0] + file.text().then(text => { this.subscriptions = []; // Invidious @@ -93,7 +94,7 @@ export default { }); } // NewPipe - if (text.indexOf("app_version") != -1) { + else if (text.indexOf("app_version") != -1) { const json = JSON.parse(text); json.subscriptions .filter(item => item.service_id == 0) @@ -104,12 +105,12 @@ export default { }); } // Invidious JSON - if (text.indexOf("thin_mode") != -1) { + else if (text.indexOf("thin_mode") != -1) { const json = JSON.parse(text); this.subscriptions = json.subscriptions; } // Google Takeout JSON - if (text.indexOf("contentDetails") != -1) { + else if (text.indexOf("contentDetails") != -1) { const json = JSON.parse(text); json.forEach(item => { const id = item.snippet.resourceId.channelId; @@ -118,7 +119,7 @@ export default { } // Google Takeout CSV - if (text.indexOf("Channel Id,") != -1 || text.indexOf("Channel ID,") != -1) { + else if (file.name.length >= 5 && file.name.slice(-4).toLowerCase() == ".csv") { const lines = text.split("\n"); for (let i = 1; i < lines.length; i++) { const line = lines[i];