Commit e3d4c6d4 by zhiwei

1.来源转发验证中添加一点资讯验证规则

parent 4dac5870
......@@ -88,6 +88,13 @@ public class TreateData {
}else if(url.contains("itouchtv.cn")){
//触电新闻解析
source = "触电新闻";
}else if(url.contains("yidianzixun.com")){
//一点资讯
if(html.contains("related_wemedia")){
source = "一点资讯";
}else{
source = html.split("source\":\"")[1].split("\",\"")[0];
}
}else{
//其他网站处理
source = mathchOtherSource(html, htmlBody, sourceList);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment