1
0
Fork 0

Update ApiV1Controller, fix blocking remote accounts. Closes #4256

This commit is contained in:
Daniel Supernault 2023-03-28 20:21:54 -06:00
parent b7501ee46e
commit 8e71e0c03e
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 2 deletions

View File

@ -1012,7 +1012,7 @@ class ApiV1Controller extends Controller
$profile = Profile::findOrFail($id);
if($profile->user->is_admin == true) {
if($profile->user && $profile->user->is_admin == true) {
abort(400, 'You cannot block an admin');
}
@ -1047,7 +1047,7 @@ class ApiV1Controller extends Controller
]);
RelationshipService::refresh($pid, $id);
UserFilterService::block($pid, $id);
$resource = new Fractal\Resource\Item($profile, new RelationshipTransformer());
$res = $this->fractal->createData($resource)->toArray();