mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Merge pull request #626 from Simounet/fix/private-pic
Fix private pic display
This commit is contained in:
commit
9d89ad18e4
1 changed files with 1 additions and 9 deletions
|
@ -162,6 +162,7 @@ class PublicApiController extends Controller
|
|||
switch ($status->scope) {
|
||||
case 'public':
|
||||
case 'unlisted':
|
||||
case 'private':
|
||||
$user = Auth::check() ? Auth::user() : false;
|
||||
if($user && $profile->is_private) {
|
||||
$follows = Follower::whereProfileId($user->profile->id)
|
||||
|
@ -173,15 +174,6 @@ class PublicApiController extends Controller
|
|||
}
|
||||
break;
|
||||
|
||||
case 'private':
|
||||
$follows = Follower::whereProfileId($user->profile->id)
|
||||
->whereFollowingId($profile->id)
|
||||
->exists();
|
||||
if($follows == false && $profile->id !== $user->profile->id) {
|
||||
abort(404);
|
||||
}
|
||||
break;
|
||||
|
||||
case 'direct':
|
||||
abort(404);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue