Fix cast from nil in short_description

このコミットが含まれているのは:
Omar Roth 2020-06-17 19:22:28 -04:00
コミット 1f435522b4
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: B8254FB7EC3D37F2
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -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?