diff --git a/files/routes/comments.py b/files/routes/comments.py index dab6694eb..03622158e 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -23,7 +23,8 @@ d = Dict("en_US") IMGUR_KEY = environ.get("IMGUR_KEY").strip() -if PUSHER_ID: beams_client = PushNotifications(instance_id=PUSHER_ID, secret_key=PUSHER_KEY) +if PUSHER_ID != '3435tdfsdudebussylmaoxxt43': + beams_client = PushNotifications(instance_id=PUSHER_ID, secret_key=PUSHER_KEY) WORDLE_COLOR_MAPPINGS = {-1: "🟥", 0: "🟨", 1: "🟩"} @@ -582,7 +583,7 @@ def api_comment(v): n = Notification(comment_id=c.id, user_id=x) g.db.add(n) - if parent.author.id != v.id and PUSHER_ID: + if parent.author.id != v.id and PUSHER_ID != '3435tdfsdudebussylmaoxxt43': if len(c.body) > 500: notifbody = c.body[:500] + '...' else: notifbody = c.body diff --git a/files/routes/users.py b/files/routes/users.py index a755a3d77..73a231198 100644 --- a/files/routes/users.py +++ b/files/routes/users.py @@ -13,7 +13,8 @@ from pusher_push_notifications import PushNotifications from collections import Counter import gevent -if PUSHER_ID: beams_client = PushNotifications(instance_id=PUSHER_ID, secret_key=PUSHER_KEY) +if PUSHER_ID != '3435tdfsdudebussylmaoxxt43': + beams_client = PushNotifications(instance_id=PUSHER_ID, secret_key=PUSHER_KEY) def leaderboard_thread(): global users9, users9_25, users13, users13_25 @@ -490,7 +491,7 @@ def message2(v, username): notif = Notification(comment_id=new_comment.id, user_id=user.id) g.db.add(notif) - if PUSHER_ID: + if PUSHER_ID != '3435tdfsdudebussylmaoxxt43': if len(message) > 500: notifbody = message[:500] + '...' else: notifbody = message @@ -559,7 +560,7 @@ def messagereply(v): notif = Notification(comment_id=new_comment.id, user_id=user_id) g.db.add(notif) - if PUSHER_ID: + if PUSHER_ID != '3435tdfsdudebussylmaoxxt43': if len(message) > 500: notifbody = message[:500] + '...' else: notifbody = message