why did i think it was a good idea to do it api side

Signed-off-by: carsand101 <carsand101@noreply.codeberg.org>
This commit is contained in:
carsand101 2023-07-11 22:22:45 +00:00
parent c67e27efa2
commit 232798fa17
1 changed files with 8 additions and 11 deletions

3
main
View File

@ -223,13 +223,10 @@ def chatsend(roomid):
}, 403
conn = get_db_connection()
if not content.isspace():
conn.execute("INSERT INTO chatmessages (content, chatroom_id, creator, created) VALUES (?, ?, ?, ?)",
(content, roomid, userCookie["id"], str(time.time())))
conn.commit()
conn.close()
else:
# do something
global burgerMessageCache
global burgerMessageUpdate