Merge pull request #626 from Simounet/fix/private-pic

Fix private pic display
This commit is contained in:
daniel 2018-12-15 20:00:37 -07:00 committed by GitHub
commit 9d89ad18e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;