catch UserNoProfileException and continue

This commit is contained in:
Evan Prodromou 2010-04-10 11:36:23 -04:00
parent b47fc9c0bc
commit 5d96cf2eec

View File

@ -49,9 +49,13 @@ class DelUserQueueHandler extends QueueHandler
return true; return true;
} }
if (!$user->hasRole(Profile_role::DELETED)) { try {
common_log(LOG_INFO, "User {$user->nickname} is not pending deletion; aborting."); if (!$user->hasRole(Profile_role::DELETED)) {
return true; 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); $notice = $this->getNextBatch($user);