mirror of
https://github.com/friendica/friendica
synced 2024-11-20 05:03:47 +00:00
Don't send blank pictures on error, fail instead.
This commit is contained in:
parent
0257f50ff7
commit
18807ae21d
1 changed files with 3 additions and 4 deletions
|
@ -287,14 +287,13 @@ class Proxy extends BaseModule
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Output a blank image, without cache headers, in case of errors
|
* In case of an error just stop. We don't return content to avoid caching problems
|
||||||
*
|
*
|
||||||
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||||
*/
|
*/
|
||||||
private static function responseError()
|
private static function responseError()
|
||||||
{
|
{
|
||||||
header('Content-type: image/png');
|
throw new \Friendica\Network\HTTPException\InternalServerErrorException();
|
||||||
echo file_get_contents('images/blank.png');
|
|
||||||
exit();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue