check if content isn't just whitespaces

Signed-off-by: carsand101 <carsand101@noreply.codeberg.org>
This commit is contained in:
carsand101 2023-07-11 22:16:42 +00:00
parent b67a441e0c
commit c67e27efa2
1 changed files with 755 additions and 752 deletions

3
main
View File

@ -223,10 +223,13 @@ 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