mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 10:50:50 +08:00
fix(approval): posts approved for deleted users error
In certain edge cases posts get approved through moderative action and throws an error when the user has already been deleted. Ref: DISCUSS-11K on sentry
This commit is contained in:
parent
368e08bb9b
commit
b5874a08e4
|
@ -69,7 +69,9 @@ class ApproveContent
|
||||||
|
|
||||||
$discussion->save();
|
$discussion->save();
|
||||||
|
|
||||||
|
if ($discussion->user) {
|
||||||
$user->refreshCommentCount();
|
$user->refreshCommentCount();
|
||||||
$user->save();
|
$user->save();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user