Fixed Quote/Mention alerts are sent to banned users

Xon

Well-known member
Licensed customer
Affected version
2.3.9
Forum/Thread watches skip banned users for both alerts/emails, but quote/mention do send alerts.
 
Thank you for reporting this issue, it has now been resolved. We are aiming to include any changes that have been made in a future XF release (2.3.10).

Change log:
Prevent alerts from being sent to banned users
There may be a delay before changes are rolled out to the XenForo Community.
 
Does this also fiix sendiing alerts to deleted members?
For example when a report is resolved for a deleted member it will fire a job to send an alert to a member that no longer can receive emails or alerts.
@Naz
 
No it fixes the issue reported only.

But further, the issue you describe doesn't exist. The XF\Service\Report\ClosureNotificationService requires users that currently exist to be notified so a deleted member would not be alerted.

PHP:
$users = $this->app->em()->findByIds(User::class, $this->notifyUserIds, ['Profile', 'Option']);
foreach ($users AS $user)
{
    $this->sendClosureNotification($user);
}

If you're observing something different, please reproduce and open a new bug report.
 
Back
Top Bottom