forked from friendica/friendica-addons
error checking in retriever
This commit is contained in:
parent
305a55604f
commit
efb913484f
1 changed files with 3 additions and 0 deletions
|
@ -241,6 +241,9 @@ function retrieve_dataurl_resource($resource) {
|
||||||
*/
|
*/
|
||||||
function retrieve_resource($resource) {
|
function retrieve_resource($resource) {
|
||||||
$components = parse_url($resource['url']);
|
$components = parse_url($resource['url']);
|
||||||
|
if (!$components) {
|
||||||
|
Logger::warning('retrieve_resource: URL ' . $resource['url'] . ' could not be parsed');
|
||||||
|
}
|
||||||
if ($components['scheme'] == "data") {
|
if ($components['scheme'] == "data") {
|
||||||
return retrieve_dataurl_resource($resource);
|
return retrieve_dataurl_resource($resource);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue