Fix error message for invalid video ID

This commit is contained in:
Omar Roth 2019-03-22 22:17:39 -05:00
parent 1079c4516c
commit 90b5479735
1 changed files with 4 additions and 0 deletions

View File

@ -701,6 +701,10 @@ def fetch_video(id, proxies, region)
raise "Video unavailable."
end
if !info["title"]?
raise "Video unavailable."
end
title = info["title"]
author = info["author"]
ucid = info["ucid"]