瀏覽代碼

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

Daniel Supernault 6 年之前
父節點
當前提交
3820122af2
共有 1 個文件被更改,包括 1 次插入1 次删除
  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();