mirror of https://github.com/pixelfed/pixelfed.git
Update AP Helpers
This commit is contained in:
parent
0ecb4133d5
commit
788c8bc640
|
@ -170,6 +170,10 @@ class Helpers {
|
|||
|
||||
public static function fetchFromUrl($url)
|
||||
{
|
||||
$url = self::validateUrl($url);
|
||||
if($url == false) {
|
||||
return;
|
||||
}
|
||||
$res = Zttp::withHeaders(self::zttpUserAgent())->get($url);
|
||||
$res = json_decode($res->body(), true, 8);
|
||||
if(json_last_error() == JSON_ERROR_NONE) {
|
||||
|
|
Loading…
Reference in New Issue