Merge pull request #3179 from pixelfed/staging

Update compiled assets
This commit is contained in:
daniel 2022-01-23 00:06:18 -07:00 committed by GitHub
commit ddd9b7ef4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View file

@ -685,7 +685,6 @@ class ApiV1Controller extends Controller
->whereNull('status')
->findOrFail($id);
RelationshipService::refresh($user->profile_id, $target->id);
$private = (bool) $target->is_private;
$remote = (bool) $target->domain;
@ -718,6 +717,7 @@ class ApiV1Controller extends Controller
(new FollowerController())->sendUndoFollow($user->profile, $target);
}
RelationshipService::refresh($user->profile_id, $target->id);
Cache::forget('profile:following:'.$target->id);
Cache::forget('profile:followers:'.$target->id);
Cache::forget('profile:following:'.$user->profile_id);
@ -726,8 +726,7 @@ class ApiV1Controller extends Controller
Cache::forget('user:account:id:'.$target->user_id);
Cache::forget('user:account:id:'.$user->id);
$resource = new Fractal\Resource\Item($target, new RelationshipTransformer());
$res = $this->fractal->createData($resource)->toArray();
$res = RelationshipService::get($user->profile_id, $target->id);
return response()->json($res);
}

BIN
public/js/spa.js vendored

Binary file not shown.

Binary file not shown.