소스 검색

update

master
DengBiao 1 년 전
부모
커밋
ab83e7293c
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -1
      internal/logic/domain/message/service/app_push.go
  2. +3
    -2
      internal/logic/domain/message/service/message_service.go

+ 1
- 1
internal/logic/domain/message/service/app_push.go 파일 보기

@@ -40,7 +40,7 @@ func CommAddPush(args md3.PushParams) {
)
pushPlatform := svc.SysCfgGet(args.MasterId, "app_push_platform")
if pushPlatform == "JgPush" { //极光
args.Content = getChangeContent(args, args.Content)
//args.Content = getChangeContent(args, args.Content)
JgPush(args)
return
}


+ 3
- 2
internal/logic/domain/message/service/message_service.go 파일 보기

@@ -195,8 +195,9 @@ func (*messageService) SendToUser(ctx context.Context, sender *pb.Sender, toUser
MasterId: masterId,
Uid: uid,
PushAlia: alia,
Title: "新消息提醒",
Content: "您收到一条新消息,来自会员\"[消息发送者-会员昵称]\",发送时间\"[时间]\"",
Title: sender.Nickname,
Content: string(req.MessageContent),
//Content: "您收到一条新消息,来自会员\"[消息发送者-会员昵称]\",发送时间\"[时间]\"",
//Content: "您收到一条新消息,来自会员\"[消息发送者-会员昵称]\",发送时间\"[时间]\",消息类型\"[消息类型]\",备注\"[备注]\"",
PushType: "zhi_ying_gim",
MessageType: req.MessageType.String(),


불러오는 중...
취소
저장