mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 00:43:05 +05:30
Fix typo in pubsub update
This commit is contained in:
parent
ae10052aaf
commit
b9c7501012
@ -2361,7 +2361,7 @@ post "/feed/webhook/:token" do |env|
|
||||
rss = XML.parse_html(body)
|
||||
rss.xpath_nodes("//feed/entry").each do |entry|
|
||||
id = entry.xpath_node("videoid").not_nil!.content
|
||||
published = Time.parse_rfc3339(entry.xpath_node("updated").not_nil!.content)
|
||||
published = Time.parse_rfc3339(entry.xpath_node("published").not_nil!.content)
|
||||
updated = Time.parse_rfc3339(entry.xpath_node("updated").not_nil!.content)
|
||||
|
||||
video = get_video(id, PG_DB, proxies, region: nil)
|
||||
|
Loading…
Reference in New Issue
Block a user