Browse Source

Update AvatarOptimize job

Daniel Supernault 6 years ago
parent
commit
63f920a143
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/Jobs/AvatarPipeline/AvatarOptimize.php

+ 2 - 1
app/Jobs/AvatarPipeline/AvatarOptimize.php

@@ -10,6 +10,7 @@ use Illuminate\Contracts\Queue\ShouldQueue;
 use Illuminate\Foundation\Bus\Dispatchable;
 use Illuminate\Queue\InteractsWithQueue;
 use Illuminate\Queue\SerializesModels;
+use Illuminate\Support\Str;
 use Image as Intervention;
 
 class AvatarOptimize implements ShouldQueue
@@ -67,7 +68,7 @@ class AvatarOptimize implements ShouldQueue
 
     protected function deleteOldAvatar($new, $current)
     {
-        if (storage_path('app/'.$new) == $current || $current == 'public/avatars/default.png') {
+        if (storage_path('app/'.$new) == $current || Str::endsWith($current, 'avatars/default.png')) {
             return;
         }
         if (is_file($current)) {