🐞 fix(消息): 消息推送去除子游戏id

This commit is contained in:
luying
2023-03-22 16:52:37 +08:00
parent e31bd2bb30
commit 3cfa5b42a1
3 changed files with 7 additions and 7 deletions

View File

@@ -384,7 +384,7 @@ export class IOSRefundParam {
export class PushMsg37Param {
notify_id: string; // 消息唯一标号,毫秒时间戳
game_id: number; // 游戏id
c_game_id: number; // 子游戏id
// c_game_id: number; // 子游戏id
title: string; // 消息标题
text: string; // 消息正文
target: SDK_PUSH_TARGET_TYPE; // 推送目标类型
@@ -400,7 +400,7 @@ export class PushMsg37Param {
constructor(time: number) {
this.notify_id = time.toString();
this.game_id = SDK_37_CONST.PUSH_GAME_ID;
this.c_game_id = SDK_37_CONST.FX_C_GAME_ID;
// this.c_game_id = SDK_37_CONST.FX_C_GAME_ID;
this.time = Math.floor(time/1000).toString();
this.source = 0; // 0: 游戏内
}