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))