Kaynağa Gözat

Update PublicApiController

Daniel Supernault 6 yıl önce
ebeveyn
işleme
6f72994a49
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      app/Http/Controllers/PublicApiController.php

+ 2 - 2
app/Http/Controllers/PublicApiController.php

@@ -528,7 +528,7 @@ class PublicApiController extends Controller
     {
         abort_unless(Auth::check(), 403);
         $profile = Profile::with('user')->whereNull('status')->whereNull('domain')->findOrFail($id);
-        if($profile->is_private || !$profile->user->settings->show_profile_followers && Auth::id() != $profile->user_id) {
+        if(Auth::id() != $profile->user_id && $profile->is_private || !$profile->user->settings->show_profile_followers) {
             return response()->json([]);
         }
         $followers = $profile->followers()->orderByDesc('followers.created_at')->paginate(10);
@@ -542,7 +542,7 @@ class PublicApiController extends Controller
     {
         abort_unless(Auth::check(), 403);
         $profile = Profile::with('user')->whereNull('status')->whereNull('domain')->findOrFail($id);
-        if($profile->is_private || !$profile->user->settings->show_profile_following && Auth::id() != $profile->user_id) {
+        if(Auth::id() != $profile->user_id && $profile->is_private || !$profile->user->settings->show_profile_following) {
             return response()->json([]);
         }
         $following = $profile->following()->orderByDesc('followers.created_at')->paginate(10);