Compare commits

..

2 Commits

2 changed files with 6 additions and 5 deletions
+2 -1
View File
@@ -53,8 +53,9 @@ class Database:
quote = msg.text.strip().split("\n\n")
text = quote[0].strip()
author = "" if len(quote) == 1 else quote[1].strip()
timestamp = msg.forward_origin.date if msg.forward_origin else msg.date
with self.conn.cursor() as cursor:
cursor.execute("INSERT INTO quotes(text, author, creator_id) VALUES(%s, NULLIF(%s, ''), (SELECT id FROM users WHERE telegram_id=%s)) RETURNING id", (quote[0].strip(), author, msg.from_user.id))
cursor.execute("INSERT INTO quotes(text, author, creator_id, datetime) VALUES(%s, NULLIF(%s, ''), (SELECT id FROM users WHERE telegram_id=%s), to_timestamp(%s)::timestamptz) RETURNING id", (quote[0].strip(), author, msg.from_user.id, timestamp))
return cursor.fetchone()[0]
def quotes_count(self):
+4 -4
View File
@@ -26,10 +26,10 @@ function datetimeToLocalISO(datetime) {
function escapedString(str) {
return str
.replace("&", "&")
.replace("<", "&lt;")
.replace(">", "&gt;")
.replace("\n", "<br>");
.replaceAll("&", "&amp;")
.replaceAll("<", "&lt;")
.replaceAll(">", "&gt;")
.replaceAll("\n", "<br>");
}
function formToJSON(form) {