1
0
Fork 0
forked from mirror/pixelfed

Update AP helper

This commit is contained in:
Daniel Supernault 2019-04-18 00:47:09 -06:00
parent 2e56b353c6
commit 445ccb82ee
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -191,7 +191,6 @@ class Helpers {
$res = Zttp::withHeaders(self::zttpUserAgent())->get($url); $res = Zttp::withHeaders(self::zttpUserAgent())->get($url);
$res = json_decode($res->body(), true, 8); $res = json_decode($res->body(), true, 8);
if(json_last_error() == JSON_ERROR_NONE) { if(json_last_error() == JSON_ERROR_NONE) {
abort_if(!self::validateObject($res), 422);
return $res; return $res;
} else { } else {
return false; return false;