From 5aa344fb92e13da76f5af03220a42b9967febb87 Mon Sep 17 00:00:00 2001 From: Crepe Date: Mon, 26 Feb 2024 23:50:56 +0200 Subject: [PATCH] Removed libretube importing --- src/components/ImportPage.vue | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/components/ImportPage.vue b/src/components/ImportPage.vue index cf7bf069..91825a65 100644 --- a/src/components/ImportPage.vue +++ b/src/components/ImportPage.vue @@ -99,14 +99,6 @@ export default { this.subscriptions.push(id); }); } - // Libretube - else if (text.includes("localSubscriptions")) { - const json = JSON.parse(text); - json.localSubscriptions - .forEach(item => { - this.subscriptions.push(item.channelId); - }); - } // Invidious JSON else if (text.indexOf("thin_mode") != -1) { const json = JSON.parse(text);