Skip to content
This repository has been archived by the owner on May 21, 2021. It is now read-only.

Commit

Permalink
fix where statement
Browse files Browse the repository at this point in the history
  • Loading branch information
hedii committed Oct 20, 2016
1 parent 44688bc commit add05bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Crawler/Crawler.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ protected function searchIsDeletedOrFinished()
protected function getNextNotCrawledUrl()
{
return $this->search->urls()
->where(['crawled' => false])
->where('crawled', '0')
->first();
}

Expand Down

0 comments on commit add05bc

Please sign in to comment.