HOME 5 hónapja
szülő
commit
1099ff3e8e
1 módosított fájl, 3 hozzáadás és 2 törlés
  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();
             }