DengBiao 1 рік тому
джерело
коміт
b79ea77eb1
1 змінених файлів з 2 додано та 2 видалено
  1. +2
    -2
      internal/logic/domain/message/service/app_push.go

+ 2
- 2
internal/logic/domain/message/service/app_push.go Переглянути файл

@@ -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,
}))


Завантаження…
Відмінити
Зберегти