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 += `
`;