mirror of
https://github.com/flarum/core.git
synced 2025-06-08 07:35:19 +02:00
Only delete avatar if it exists
This commit is contained in:
parent
a32250884c
commit
edccd10693
@ -51,7 +51,9 @@ class DeleteAvatarHandler
|
|||||||
|
|
||||||
event(new AvatarWillBeDeleted($user, $actor));
|
event(new AvatarWillBeDeleted($user, $actor));
|
||||||
|
|
||||||
|
if ($this->uploadDir->has($avatarPath)) {
|
||||||
$this->uploadDir->delete($avatarPath);
|
$this->uploadDir->delete($avatarPath);
|
||||||
|
}
|
||||||
|
|
||||||
$user->save();
|
$user->save();
|
||||||
$this->dispatchEventsFor($user);
|
$this->dispatchEventsFor($user);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user