Avoid infinite loop in ChannelVideo's to_xml/to_json methods

This commit is contained in:
Samantaz Fox 2022-01-20 17:18:17 +01:00
parent 12b818a83c
commit dee20f92a7
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 4 additions and 12 deletions

View File

@ -44,13 +44,9 @@ struct ChannelVideo
end
end
def to_json(locale, json : JSON::Builder | Nil = nil)
if json
def to_json(locale, _json : Nil = nil)
JSON.build do |json|
to_json(locale, json)
else
JSON.build do |json|
to_json(locale, json)
end
end
end
@ -88,13 +84,9 @@ struct ChannelVideo
end
end
def to_xml(locale, xml : XML::Builder | Nil = nil)
if xml
def to_xml(locale, _xml : Nil = nil)
XML.build do |xml|
to_xml(locale, xml)
else
XML.build do |xml|
to_xml(locale, xml)
end
end
end