move theme converter function to a separate file

This commit is contained in:
Samantaz Fox 2021-10-07 21:55:21 +02:00
parent 984a4acc7b
commit 080d9a8dc7
No known key found for this signature in database
GPG Key ID: F42821059186176E
2 changed files with 12 additions and 13 deletions

View File

@ -397,19 +397,6 @@ def parse_range(range)
return 0_i64, nil
end
def convert_theme(theme)
case theme
when "true"
"dark"
when "false"
"light"
when "", nil
nil
else
theme
end
end
def fetch_random_instance
begin
instance_api_client = make_client(URI.parse("https://api.invidious.io"))

View File

@ -0,0 +1,12 @@
def convert_theme(theme)
case theme
when "true"
"dark"
when "false"
"light"
when "", nil
nil
else
theme
end
end