1
0
mirror of https://github.com/iv-org/invidious.git synced 2025-01-20 05:32:54 +05:30

Update channel when fetched by thread

This commit is contained in:
Omar Roth 2018-07-26 17:17:16 -05:00
parent 8ed9624e0a
commit cc047bb5e5

@ -138,6 +138,7 @@ channel_threads.times do |i|
begin
id = rs.read(String)
channel = fetch_channel(id, client, PG_DB, false)
PG_DB.exec("UPDATE channels SET updated = $1 WHERE id = $2", Time.now, id)
rescue ex
STDOUT << id << " : " << ex.message << "\n"
next