Fix cast from nil in short_description

pull/1295/head
Omar Roth 2020-06-17 19:22:28 -04:00
rodzic 83b1d80a5b
commit 1f435522b4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B8254FB7EC3D37F2
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -706,7 +706,7 @@ struct Video
end
def short_description
info["shortDescription"]?.try &.as_s || ""
info["shortDescription"]?.try &.as_s? || ""
end
def hls_manifest_url : String?