From ab35ac8b769b2d9816dffb33a64f2c6f7bd5dd6e Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期四, 05 九月 2024 17:05:55 +0800 Subject: [PATCH] 风行网页版爬虫 --- src/main/java/com/yeshi/buwan/controller/parser/ZhiBoParser.java | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/yeshi/buwan/controller/parser/ZhiBoParser.java b/src/main/java/com/yeshi/buwan/controller/parser/ZhiBoParser.java index 0312d0a..c9870ab 100644 --- a/src/main/java/com/yeshi/buwan/controller/parser/ZhiBoParser.java +++ b/src/main/java/com/yeshi/buwan/controller/parser/ZhiBoParser.java @@ -114,10 +114,11 @@ List<LiveType> typelist = new ArrayList<LiveType>(); String value = ""; if ("IOS".equalsIgnoreCase(acceptData.getPlatform())) { - DetailSystemConfig config = configService.getConfigByKey("open_huajiao_IOS", detailSystem, acceptData.getVersion()); + DetailSystemConfig config = configService.getConfigByKey("open_huajiao_IOS", acceptData.getDetailSystem(), acceptData.getVersion()); value = config.getValue(); } else { - DetailSystemConfig config = configService.getConfigByKey("open_huajiao_Android", detailSystem, acceptData.getVersion()); + + DetailSystemConfig config = configService.getConfigByKey("open_huajiao_Android", acceptData.getDetailSystem(), acceptData.getVersion()); value = config.getValue(); } if ("鏄�".equals(value)) { -- Gitblit v1.8.0