mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-03 08:29:46 +01:00
Fix from_yaml in ConfigPreferences
This commit is contained in:
parent
5ef288b840
commit
31312747e9
@ -17,12 +17,12 @@ struct ConfigPreferences
|
|||||||
end
|
end
|
||||||
|
|
||||||
result = [] of String
|
result = [] of String
|
||||||
node.nodes.each do
|
node.nodes.each do |item|
|
||||||
unless node.is_a?(YAML::Nodes::Scalar)
|
unless item.is_a?(YAML::Nodes::Scalar)
|
||||||
node.raise "Expected scalar, not #{node.class}"
|
node.raise "Expected scalar, not #{item.class}"
|
||||||
end
|
end
|
||||||
|
|
||||||
result << node.value
|
result << item.value
|
||||||
end
|
end
|
||||||
rescue ex
|
rescue ex
|
||||||
if node.is_a?(YAML::Nodes::Scalar)
|
if node.is_a?(YAML::Nodes::Scalar)
|
||||||
|
@ -64,12 +64,12 @@ struct Preferences
|
|||||||
end
|
end
|
||||||
|
|
||||||
result = [] of String
|
result = [] of String
|
||||||
node.nodes.each do
|
node.nodes.each do |item|
|
||||||
unless node.is_a?(YAML::Nodes::Scalar)
|
unless item.is_a?(YAML::Nodes::Scalar)
|
||||||
node.raise "Expected scalar, not #{node.class}"
|
node.raise "Expected scalar, not #{item.class}"
|
||||||
end
|
end
|
||||||
|
|
||||||
result << node.value
|
result << item.value
|
||||||
end
|
end
|
||||||
rescue ex
|
rescue ex
|
||||||
if node.is_a?(YAML::Nodes::Scalar)
|
if node.is_a?(YAML::Nodes::Scalar)
|
||||||
|
Loading…
Reference in New Issue
Block a user