If there's an exception in notice distribution, continue
This commit is contained in:
parent
6aaee4e5fe
commit
6f424eb80f
|
@ -1031,9 +1031,15 @@ class Notice extends Managed_DataObject
|
|||
}
|
||||
|
||||
foreach ($ni as $id => $source) {
|
||||
$user = User::staticGet('id', $id);
|
||||
if (empty($user) || $user->hasBlocked($profile) ||
|
||||
($originalProfile && $user->hasBlocked($originalProfile))) {
|
||||
try {
|
||||
$user = User::staticGet('id', $id);
|
||||
if (empty($user) ||
|
||||
$user->hasBlocked($profile) ||
|
||||
($originalProfile && $user->hasBlocked($originalProfile))) {
|
||||
unset($ni[$id]);
|
||||
}
|
||||
} catch (UserNoProfileException $e) {
|
||||
// User doesn't have a profile; invalid; skip them.
|
||||
unset($ni[$id]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user