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

th-new
Claire 2023-12-07 10:05:08 +01:00 committed by GitHub
parent 336d6260ba
commit 7593465c23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

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