DengBiao vor 1 Jahr
Ursprung
Commit
b79ea77eb1
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      internal/logic/domain/message/service/app_push.go

+ 2
- 2
internal/logic/domain/message/service/app_push.go Datei anzeigen

@@ -74,7 +74,7 @@ func JgPush(args md3.PushParams) {
Platform: "all",
Audience: aud,
Title: args.Title,
Content: args.Content,
Content: strings.Replace(args.Content, "\\n", "", -1),
Extras: extras,
Intent: intent,
}
@@ -85,7 +85,7 @@ func JgPush(args md3.PushParams) {
"res": res,
"push_alia": args.PushAlia,
"title": param.Title,
"content": strings.Replace(param.Content, "\\n", "", -1),
"content": param.Content,
"jg_push_app_key": jgPushAppKey,
"jg_push_app_secret": jgPushAppSecret,
}))


Laden…
Abbrechen
Speichern