Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
skalero01 committed Oct 15, 2020
1 parent b328301 commit cb21b3f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Drivers/Voku.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ public function setUrl($url)
);
$context = stream_context_create($opts);
$html = @file_get_contents($url, false, $context);
if(is_bool($html)) {
return;
}
$this->setHtml($html);
return $this;
}
Expand Down

0 comments on commit cb21b3f

Please sign in to comment.