1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-10-31 14:10:08 +00:00

Fix WhisperCommand when user does not exist

This commit is contained in:
Tim Düsterhus 2014-02-27 16:34:12 +01:00
parent 1c1f695ecd
commit ad30fe8695

View File

@ -30,7 +30,7 @@ public function __construct(\chat\system\command\CommandHandler $commandHandler)
}
$this->user = UserProfile::getUserProfileByUsername($username);
if (!$this->user->userID) throw new \chat\system\command\UserNotFoundException($username);
if (!$this->user) throw new \chat\system\command\UserNotFoundException($username);
if (!\wcf\system\WCF::getSession()->getPermission('user.profile.cannotBeIgnored')) {
if ($this->user->isIgnoredUser(\wcf\system\WCF::getUser()->userID)) {
throw new \wcf\system\exception\UserInputException('text', \wcf\system\WCF::getLanguage()->getDynamicVariable('chat.error.whisper.ignoresYou', array('user' => $this->user)));