Add fix for empty title tag when fetching videos

This commit is contained in:
Omar Roth 2019-07-10 10:44:44 -05:00
parent 47f6fe069a
commit 3c226892c6
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2
1 changed files with 1 additions and 1 deletions

View File

@ -1166,7 +1166,7 @@ def fetch_video(id, region)
raise "Video unavailable."
end
if !info["title"]?
if !info["title"]? || info["title"].empty?
raise "Video unavailable."
end