From 7e6fdf68a913a233ab0cd96ebad095e9faf03638 Mon Sep 17 00:00:00 2001 From: luying Date: Mon, 29 May 2023 15:22:46 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(=E6=8E=92=E8=A1=8C=E6=A6=9C)?= =?UTF-8?q?:=20=E5=BD=93=E7=AC=AC=E4=B8=80=E5=90=8D=E9=95=BF=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E4=B8=8D=E7=99=BB=E5=BD=95=E5=90=8E=E6=80=BB=E6=8E=92?= =?UTF-8?q?=E8=A1=8C=E6=A6=9C=E4=BC=9A=E6=B2=A1=E6=9C=89=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/rankService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/game-server/app/services/rankService.ts b/game-server/app/services/rankService.ts index b9d9367a6..6a4690ea9 100644 --- a/game-server/app/services/rankService.ts +++ b/game-server/app/services/rankService.ts @@ -822,9 +822,9 @@ export class Rank { let param: RoleRankInfo | GuildRankInfo | LeagueRankInfo; if (this.infoKey == REDIS_KEY.USER_INFO) { - if (this.key != REDIS_KEY.LADDER && this.key != REDIS_KEY.GVG_VESTIGE_MEMBER && nowSeconds() - userInfo.updatedAt > 2 * 30 * 24 * 60 * 60) { - return null; - } + // if (this.key != REDIS_KEY.LADDER && this.key != REDIS_KEY.GVG_VESTIGE_MEMBER && nowSeconds() - userInfo.updatedAt > 2 * 30 * 24 * 60 * 60) { + // return null; + // } param = new RoleRankInfo(userInfo); param.setInfo(rank, myId, scores[0], scores[1]); } else if (this.infoKey == REDIS_KEY.GUILD_INFO) {