forked from rDrama/rDrama
1
0
Fork 0

Merge branch 'frost' of https://github.com/Aevann1/Drama into frost

master
Aevann1 2022-06-11 11:17:50 +02:00
commit 9caf40a9f1
3 changed files with 3 additions and 2 deletions

View File

View File

@ -56,7 +56,7 @@ def notify_mentions(send_to, mentions, mention_str='site mention'):
author_id=const.NOTIFICATIONS_ID,
parent_submission=None,
body_html=notif_text).one_or_none()
if existing_comment: break
if existing_comment: continue
new_comment = Comment(
author_id=const.NOTIFICATIONS_ID,

View File

@ -203,7 +203,8 @@ CREATE TABLE public.badges (
badge_id integer NOT NULL,
user_id integer NOT NULL,
description character varying(256),
url character varying(256)
url character varying(256),
created_utc integer NOT NULL
);