Fix wrong Network::fetchUrl call in Utils\Scrape

This commit is contained in:
Hypolite Petovan 2018-11-12 21:49:06 -05:00
parent dadcf3239f
commit 5207196e1a
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class Scrape
$scrape_start = microtime(true);
$params = [];
$html = Network::fetchURL($url, $timeout);
$html = Network::fetchURL($url, false, $timeout);
$scrape_fetch_end = microtime(true);