From 6c39c5d9b853a6658c1c645c970d5e8ae0eba019 Mon Sep 17 00:00:00 2001 From: Cody Robibero Date: Mon, 9 Sep 2024 11:53:52 -0600 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Bill Thornton --- src/components/libraryoptionseditor/libraryoptionseditor.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/libraryoptionseditor/libraryoptionseditor.js b/src/components/libraryoptionseditor/libraryoptionseditor.js index 84bcf4bdcb..0b893d08fa 100644 --- a/src/components/libraryoptionseditor/libraryoptionseditor.js +++ b/src/components/libraryoptionseditor/libraryoptionseditor.js @@ -220,12 +220,11 @@ function renderLyricFetchers(page, availableOptions, libraryOptions) { const elem = page.querySelector('.lyricFetchers'); let plugins = availableOptions.LyricFetchers; - plugins = getOrderedPlugins(plugins, libraryOptions.LyricFetcherOrder || []); + plugins = getOrderedPlugins(plugins, libraryOptions.LyricFetcherOrder); if (!plugins.length) return html; html += `

${globalize.translate('LabelLyricDownloaders')}

`; html += '
'; - console.log(libraryOptions); for (let i = 0; i < plugins.length; i++) { const plugin = plugins[i]; html += `
`;