From 21e925fe261642b32da12aca59a890438e81c718 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Thu, 19 Mar 2026 22:38:28 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8B=B9=E6=9E=9C=E5=8F=AA=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E7=BB=BF=E8=89=B2=E6=B8=B8=E6=88=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/command/sys/query/GameListConfigQryExe.java | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/GameListConfigQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/GameListConfigQryExe.java index f2aa6cf5..fb4a3892 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/GameListConfigQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/GameListConfigQryExe.java @@ -142,18 +142,9 @@ public class GameListConfigQryExe { .filter(config -> Objects.equals(config.getClientOrigin(), "IOS") || Objects .equals(config.getClientOrigin(), COMMON)) .toList(); - // iOS 审核中 且 用户 IP 属于美国,只显示 CASUAL 分类 - if (versionManageService.isIosReviewing(cmd.requireReqSysOrigin())) { - LatestMobileDevice device = latestMobileDeviceService.getByUserId(cmd.requiredReqUserId()); - String userIp = Objects.nonNull(device) ? device.getIp() : null; - log.info("GameListConfigQryExe iOS review check userId={} ip={}", cmd.requiredReqUserId(), userIp); - if (ipCountryUtils.isUsIp(userIp)) { - return iosConfigs.stream() + return iosConfigs.stream() .filter(config -> Objects.equals(config.getCategory(), "CASUAL")) .toList(); - } - } - return iosConfigs; } return configs.stream() .filter(config -> Objects.equals(config.getClientOrigin(), COMMON))