mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Add error handling for top videos
This commit is contained in:
parent
fb87b3347b
commit
48da2ced46
2 changed files with 13 additions and 3 deletions
|
@ -135,7 +135,11 @@ spawn do
|
|||
end
|
||||
|
||||
loop do
|
||||
top = rank_videos(PG_DB, 40, youtube_pool, filter)
|
||||
begin
|
||||
top = rank_videos(PG_DB, 40, youtube_pool, filter)
|
||||
rescue ex
|
||||
next
|
||||
end
|
||||
|
||||
if top.size > 0
|
||||
args = arg_array(top)
|
||||
|
@ -150,6 +154,7 @@ spawn do
|
|||
begin
|
||||
videos << get_video(id, client, PG_DB)
|
||||
rescue ex
|
||||
next
|
||||
end
|
||||
youtube_pool << client
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue