Browse Source

Update AdminReportController, flush thumbnail cache after setting item as NSFW

Daniel Supernault 6 years ago
parent
commit
e926fbba35
1 changed files with 2 additions and 0 deletions
  1. 2 0
      app/Http/Controllers/Admin/AdminReportController.php

+ 2 - 0
app/Http/Controllers/Admin/AdminReportController.php

@@ -2,6 +2,7 @@
 
 namespace App\Http\Controllers\Admin;
 
+use Cache;
 use App\Report;
 use Carbon\Carbon;
 use Illuminate\Http\Request;
@@ -47,6 +48,7 @@ trait AdminReportController
                 break;
 
             case 'cw':
+                Cache::forget('status:thumb:'.$item->id);
                 $item->is_nsfw = true;
                 $item->save();
                 $report->nsfw = true;