catch UserNoProfileException and continue
This commit is contained in:
parent
b47fc9c0bc
commit
5d96cf2eec
@ -49,10 +49,14 @@ class DelUserQueueHandler extends QueueHandler
|
||||
return true;
|
||||
}
|
||||
|
||||
try {
|
||||
if (!$user->hasRole(Profile_role::DELETED)) {
|
||||
common_log(LOG_INFO, "User {$user->nickname} is not pending deletion; aborting.");
|
||||
return true;
|
||||
}
|
||||
} catch (UserNoProfileException $unp) {
|
||||
common_log(LOG_INFO, "Deleting user {$user->nickname} with no profile... probably a good idea!");
|
||||
}
|
||||
|
||||
$notice = $this->getNextBatch($user);
|
||||
if ($notice->N) {
|
||||
|
Loading…
Reference in New Issue
Block a user