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

Commit add05bc

Browse files
committed
fix where statement
1 parent 44688bc commit add05bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Crawler/Crawler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ protected function searchIsDeletedOrFinished()
175175
protected function getNextNotCrawledUrl()
176176
{
177177
return $this->search->urls()
178-
->where(['crawled' => false])
178+
->where('crawled', '0')
179179
->first();
180180
}
181181

0 commit comments

Comments
 (0)