Kaynağa Gözat

Update Status model, fix thumb nsfw caching

Daniel Supernault 4 yıl önce
ebeveyn
işleme
327ef1384b
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. 2 1
      app/Status.php

+ 2 - 1
app/Status.php

@@ -89,7 +89,8 @@ class Status extends Model
 
 
     public function thumb($showNsfw = false)
     public function thumb($showNsfw = false)
     {
     {
-        return Cache::remember('status:thumb:'.$this->id, now()->addMinutes(15), function() use ($showNsfw) {
+        $key = $showNsfw ? 'status:thumb:nsfw1'.$this->id : 'status:thumb:nsfw0'.$this->id;
+        return Cache::remember($key, now()->addMinutes(15), function() use ($showNsfw) {
             $type = $this->type ?? $this->setType();
             $type = $this->type ?? $this->setType();
             $is_nsfw = !$showNsfw ? $this->is_nsfw : false;
             $is_nsfw = !$showNsfw ? $this->is_nsfw : false;
             if ($this->media->count() == 0 || $is_nsfw || !in_array($type,['photo', 'photo:album', 'video'])) {
             if ($this->media->count() == 0 || $is_nsfw || !in_array($type,['photo', 'photo:album', 'video'])) {