forked from midou/invidious
Add error handling for top videos
This commit is contained in:
parent
fb87b3347b
commit
48da2ced46
@ -259,7 +259,12 @@ def rank_videos(db, n, pool, filter)
|
|||||||
break
|
break
|
||||||
else
|
else
|
||||||
client = get_client(pool)
|
client = get_client(pool)
|
||||||
|
begin
|
||||||
video = get_video(id, client, db)
|
video = get_video(id, client, db)
|
||||||
|
rescue ex
|
||||||
|
next
|
||||||
|
end
|
||||||
|
|
||||||
pool << client
|
pool << client
|
||||||
|
|
||||||
if video.language
|
if video.language
|
||||||
|
@ -135,7 +135,11 @@ spawn do
|
|||||||
end
|
end
|
||||||
|
|
||||||
loop do
|
loop do
|
||||||
|
begin
|
||||||
top = rank_videos(PG_DB, 40, youtube_pool, filter)
|
top = rank_videos(PG_DB, 40, youtube_pool, filter)
|
||||||
|
rescue ex
|
||||||
|
next
|
||||||
|
end
|
||||||
|
|
||||||
if top.size > 0
|
if top.size > 0
|
||||||
args = arg_array(top)
|
args = arg_array(top)
|
||||||
@ -150,6 +154,7 @@ spawn do
|
|||||||
begin
|
begin
|
||||||
videos << get_video(id, client, PG_DB)
|
videos << get_video(id, client, PG_DB)
|
||||||
rescue ex
|
rescue ex
|
||||||
|
next
|
||||||
end
|
end
|
||||||
youtube_pool << client
|
youtube_pool << client
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user