Parcourir la source

Update CommentController, still allow muted users to comment on your posts

Daniel Supernault il y a 6 ans
Parent
commit
3820122af2
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      app/Http/Controllers/CommentController.php

+ 1 - 1
app/Http/Controllers/CommentController.php

@@ -60,7 +60,7 @@ class CommentController extends Controller
 
         $filtered = UserFilter::whereUserId($status->profile_id)
             ->whereFilterableType('App\Profile')
-            ->whereIn('filter_type', ['mute', 'block'])
+            ->whereIn('filter_type', ['block'])
             ->whereFilterableId($profile->id)
             ->exists();