mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update AvatarOptimize job
This commit is contained in:
parent
a896a6a956
commit
63f920a143
1 changed files with 2 additions and 1 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Reference in a new issue