Add errorcode for invalid video IDs

This commit is contained in:
Omar Roth 2019-01-31 08:48:44 -06:00
parent 1e214aae7c
commit 9e73e3b153

View File

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