From ec84fbe6d40bfdde5f973e4db53603f1a8b975d6 Mon Sep 17 00:00:00 2001 From: ririxi Date: Sat, 8 Feb 2025 14:48:51 +0100 Subject: [PATCH] style: remove blank lines --- CustomApps/lyrics-plus/ProviderMusixmatch.js | 1 - CustomApps/lyrics-plus/Settings.js | 1 - 2 files changed, 2 deletions(-) diff --git a/CustomApps/lyrics-plus/ProviderMusixmatch.js b/CustomApps/lyrics-plus/ProviderMusixmatch.js index c0c3184bdb..92db4dfbcd 100644 --- a/CustomApps/lyrics-plus/ProviderMusixmatch.js +++ b/CustomApps/lyrics-plus/ProviderMusixmatch.js @@ -163,7 +163,6 @@ const ProviderMusixmatch = (() => { if (!track_id) return null; const selectedLanguage = CONFIG.visual["musixmatch-translation-language"] || "none"; - if (selectedLanguage === "none") return null; const baseURL = diff --git a/CustomApps/lyrics-plus/Settings.js b/CustomApps/lyrics-plus/Settings.js index aa137507ca..e5e3a037ec 100644 --- a/CustomApps/lyrics-plus/Settings.js +++ b/CustomApps/lyrics-plus/Settings.js @@ -520,7 +520,6 @@ const languageCodes = const displayNames = new Intl.DisplayNames(["en"], { type: "language" }); const languageOptions = languageCodes.reduce((acc, code) => { acc[code] = code === "none" ? "None" : displayNames.of(code); - return acc; }, {});