mirror of
https://git.nadeko.net/Fijxu/invidious.git
synced 2025-12-22 19:08:50 +00:00
13 lines
140 B
Crystal
13 lines
140 B
Crystal
def convert_theme(theme)
|
|
case theme
|
|
when "true"
|
|
"dark"
|
|
when "false"
|
|
"light"
|
|
when "", nil
|
|
nil
|
|
else
|
|
theme
|
|
end
|
|
end
|