cvb
This commit is contained in:
parent
d2256c9200
commit
945b38ade5
2 changed files with 7 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue