From 86d0de4b0e6d77fb1e5772815acf67639176c0cc Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Fri, 31 May 2019 10:29:17 -0500 Subject: [PATCH] Fix typo in post webhook --- src/invidious.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/invidious.cr b/src/invidious.cr index e89448e4..fa4ac44d 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -2867,7 +2867,7 @@ post "/feed/webhook/:token" do |env| video_array = video.to_a args = arg_array(video_array) - PG_DB.exec("INSERT INTO channel_videos (id, title, published, updated, ucid, author, length_seconds, live_now, premiere_timestamp) VALUES (#{args}) \ + PG_DB.exec("INSERT INTO channel_videos VALUES (#{args}) \ ON CONFLICT (id) DO UPDATE SET title = $2, published = $3, \ updated = $4, ucid = $5, author = $6, length_seconds = $7, \ live_now = $8, premiere_timestamp = $9, views = $10", video_array)