mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
add comment_id on username mention
This commit is contained in:
parent
91456dc9b9
commit
c2a77e7c66
1 changed files with 4 additions and 1 deletions
|
@ -422,7 +422,10 @@ func payloadFromMessage(acct domain.Account, msg *reddit.Thing, badgeCount int)
|
||||||
switch {
|
switch {
|
||||||
case (msg.Kind == "t1" && msg.Type == "username_mention"):
|
case (msg.Kind == "t1" && msg.Type == "username_mention"):
|
||||||
title := fmt.Sprintf(usernameMentionNotificationTitleFormat, postTitle)
|
title := fmt.Sprintf(usernameMentionNotificationTitleFormat, postTitle)
|
||||||
payload = payload.AlertTitle(title).Custom("type", "username")
|
payload = payload.
|
||||||
|
AlertTitle(title).
|
||||||
|
Custom("comment_id", msg.ID).
|
||||||
|
Custom("type", "username")
|
||||||
|
|
||||||
pType, _ := reddit.SplitID(msg.ParentID)
|
pType, _ := reddit.SplitID(msg.ParentID)
|
||||||
if pType == "t1" {
|
if pType == "t1" {
|
||||||
|
|
Loading…
Reference in a new issue