mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 08:53:13 +05:30
move theme converter function to a separate file
This commit is contained in:
parent
984a4acc7b
commit
080d9a8dc7
@ -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"))
|
||||
|
12
src/invidious/user/converters.cr
Normal file
12
src/invidious/user/converters.cr
Normal file
@ -0,0 +1,12 @@
|
||||
def convert_theme(theme)
|
||||
case theme
|
||||
when "true"
|
||||
"dark"
|
||||
when "false"
|
||||
"light"
|
||||
when "", nil
|
||||
nil
|
||||
else
|
||||
theme
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user