remotes/1693045480750635534/spooky-22
Aevann1 2022-01-17 17:13:35 +02:00
parent 06aeb49e07
commit 21eb20c9df
2 changed files with 27 additions and 27 deletions

View File

@ -467,32 +467,34 @@ def api_comment(v):
if parent.author.id != v.id:
if len(c.body) > 500: notifbody = c.body[:500] + '...'
elif c.body: notifbody = c.body
else: notifbody = ''
else: notifbody = c.body
beams_client.publish_to_interests(
interests=[f'{request.host}{parent.author.id}'],
publish_body={
'web': {
'notification': {
'title': f'New reply by @{v.username}',
'body': notifbody,
'deep_link': f'https://{site}/comment/{c.id}?context=9&read=true#context',
'icon': f'https://{request.host}/assets/images/{SITE_NAME}/icon.webp',
}
},
'fcm': {
'notification': {
'title': f'New reply by @{v.username}',
'body': notifbody,
try:
beams_client.publish_to_interests(
interests=[f'{request.host}{parent.author.id}'],
publish_body={
'web': {
'notification': {
'title': f'New reply by @{v.username}',
'body': notifbody,
'deep_link': f'https://{site}/comment/{c.id}?context=9&read=true#context',
'icon': f'https://{request.host}/assets/images/{SITE_NAME}/icon.webp',
}
},
'data': {
'url': f'comment/{c.id}?context=9&read=true#context',
'fcm': {
'notification': {
'title': f'New reply by @{v.username}',
'body': notifbody,
},
'data': {
'url': f'comment/{c.id}?context=9&read=true#context',
}
}
}
},
)
},
)
except Exception as e:
print(e)
print(c.id)
vote = CommentVote(user_id=v.id,

View File

@ -437,8 +437,7 @@ def message2(v, username):
g.db.add(notif)
if len(message) > 500: notifbody = message[:500] + '...'
elif message: notifbody = message
else: notifbody = ''
else: notifbody = message
beams_client.publish_to_interests(
interests=[f'{request.host}{user.id}'],
@ -505,8 +504,7 @@ def messagereply(v):
g.db.add(notif)
if len(message) > 500: notifbody = message[:500] + '...'
elif message: notifbody = message
else: notifbody = ''
else: notifbody = message
beams_client.publish_to_interests(
interests=[f'{request.host}{user_id}'],