mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Add rescue for video ranking
This commit is contained in:
parent
2be57276a2
commit
39df8ab200
2 changed files with 6 additions and 2 deletions
|
@ -147,7 +147,11 @@ spawn do
|
|||
|
||||
top.each do |id|
|
||||
client = get_client(youtube_pool)
|
||||
videos << get_video(id, client, PG_DB)
|
||||
begin
|
||||
videos << get_video(id, client, PG_DB)
|
||||
rescue ex
|
||||
STDOUT << Time.now << " : " << ex.message << "\n"
|
||||
end
|
||||
youtube_pool << client
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue