diff options
Diffstat (limited to 'src/helpers.cr')
| -rw-r--r-- | src/helpers.cr | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/helpers.cr b/src/helpers.cr index 6131989b..9bfa8b19 100644 --- a/src/helpers.cr +++ b/src/helpers.cr @@ -532,6 +532,8 @@ def fetch_channel(id, client, db) rss = client.get("/feeds/videos.xml?channel_id=#{id}").body rss = XML.parse_html(rss) + db.exec("DELETE FROM channel_videos * WHERE ucid = $1", id) + rss.xpath_nodes("//feed/entry").each do |entry| video_id = entry.xpath_node("videoid").not_nil!.content title = entry.xpath_node("title").not_nil!.content |
