From fc7d3f9f797f5424bc2bf0f54ff6b9fad25be1ae Mon Sep 17 00:00:00 2001 From: Robin Malley Date: Tue, 17 Jan 2023 23:16:05 +0000 Subject: [PATCH] Updating a story no longer updates the post time. --- src/sql/update_post.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/sql/update_post.sql b/src/sql/update_post.sql index 7e75732..6a4cc77 100644 --- a/src/sql/update_post.sql +++ b/src/sql/update_post.sql @@ -4,7 +4,6 @@ SET post_title = ?, post_text = ?, isanon = ?, - unlisted = ?, - post_time = strftime('%s','now') + unlisted = ? WHERE posts.id = ?;