Skip to content

Commit

Permalink
[skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
sjdirect committed Mar 21, 2015
1 parent 17f1586 commit cf8f359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Abot/Crawler/WebCrawler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ protected virtual void SchedulePageLinks(CrawledPage crawledPage)

protected virtual bool ShouldSchedulePageLink(PageToCrawl page)
{
if ((page.IsInternal == true || _crawlContext.CrawlConfiguration.IsExternalPageCrawlingEnabled == true) && (ShouldCrawlPage(page)))
if ((page.IsInternal || _crawlContext.CrawlConfiguration.IsExternalPageCrawlingEnabled) && (ShouldCrawlPage(page)))
return true;

return false;
Expand Down

0 comments on commit cf8f359

Please sign in to comment.