1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-05 02:08:21 +09:00

Fix error when processing link preview with an array as inLanguage (#28252)

This commit is contained in:
Claire 2023-12-07 10:05:08 +01:00
parent 4d96d716c4
commit c609b726cb

View File

@ -37,6 +37,7 @@ class LinkDetailsExtractor
def language
lang = json['inLanguage']
lang = lang.first if lang.is_a?(Array)
lang.is_a?(Hash) ? (lang['alternateName'] || lang['name']) : lang
end