diff --git a/src/applications/phid/PhabricatorObjectHandle.php b/src/applications/phid/PhabricatorObjectHandle.php index 95c40ffa2b..577fd05692 100644 --- a/src/applications/phid/PhabricatorObjectHandle.php +++ b/src/applications/phid/PhabricatorObjectHandle.php @@ -402,6 +402,10 @@ final class PhabricatorObjectHandle } public function hasCapabilities() { + if (!$this->isComplete()) { + return false; + } + return ($this->getType() === PhabricatorPeopleUserPHIDType::TYPECONST); }