Fix typo in pubsub update

pull/410/head
Omar Roth 6 years ago
parent ae10052aaf
commit b9c7501012

@ -2361,7 +2361,7 @@ post "/feed/webhook/:token" do |env|
rss = XML.parse_html(body) rss = XML.parse_html(body)
rss.xpath_nodes("//feed/entry").each do |entry| rss.xpath_nodes("//feed/entry").each do |entry|
id = entry.xpath_node("videoid").not_nil!.content 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) updated = Time.parse_rfc3339(entry.xpath_node("updated").not_nil!.content)
video = get_video(id, PG_DB, proxies, region: nil) video = get_video(id, PG_DB, proxies, region: nil)

Loading…
Cancel
Save