fix: continue channel refresh after date lookup failures

This commit is contained in:
Agastya 2026-09-26 10:29:36 +05:30
parent f76a50ecce
commit 06b25efc06

View File

@ -289,6 +289,9 @@ private def fetch_video_published_at(video_id : String) : Time?
return date_text.try do |text|
parse_video_published_date(text.lchop("Scheduled for "))
end
rescue ex
LOGGER.debug("fetch_video_published_at: #{video_id}: #{ex.message}")
return nil
end
private def parse_video_published_at(published : String) : Time