Skip to content

Commit

Permalink
Fix: opt
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed May 30, 2024
1 parent 953f20f commit 892bb66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Lyrics/lyrics_providers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
local p_www_songtexte_com = {
name = "Songtexte",
artist_filter = function(artist)
artist = artist:gsub(" ", "-")
artist = artist:gsub("%s", "-")
artist = artist:lower(artist)
return artist
end,
title_filter = function(title)
title = title:gsub(" ", "-")
title = title:gsub("%s", "-")
title = title:lower(title)
return title
end,
Expand All @@ -27,6 +27,6 @@ local p_www_songtexte_com = {

-- Return the providers as lua table
-- You can use this table to sort or disable providers
return {
return {
p_www_songtexte_com,
}

0 comments on commit 892bb66

Please sign in to comment.