Skip to content
Snippets Groups Projects
Commit d32c00b1 authored by Demian Katz's avatar Demian Katz
Browse files

Merge pull request #202 from prolic/patch-4

Ignore empty string response
parents dca26963 755c9668
No related merge requests found
......@@ -643,6 +643,10 @@ class Loader implements \Zend\Log\LoggerAwareInterface
}
$image = $result->getBody();
if ('' == $image) {
return false;
}
// Figure out file paths -- $tempFile will be used to store the
// image for analysis. $finalFile will be used for long-term storage if
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment