浏览代码

fix Link Record

HOME 5 月之前
父节点
当前提交
1099ff3e8e
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      Rac.Core/Crawler.cs

+ 3 - 2
Rac.Core/Crawler.cs

@@ -112,10 +112,11 @@ namespace Rac
                 }
 
                 AddLinks(lstExPfx, false, "Exclude by url prefix");
-                AddLinks(lstInHome, true, "Include by home host");
-                AddLinks(lstInHosts, false, "Exclude by url prefix");
                 AddLinks(lstExNon, false, "Exclude by non matched rulers");
 
+                AddLinks(lstInHome, true, "Include by home host");
+                AddLinks(lstInHosts, true, "Include by [HostsInclude]");
+
                 return lstInHome.Union(lstInHosts).Select(p => p.ToString()).ToArray();
             }