diff --git a/src/applications/auth/phid/PhabricatorAuthMessagePHIDType.php b/src/applications/auth/phid/PhabricatorAuthMessagePHIDType.php --- a/src/applications/auth/phid/PhabricatorAuthMessagePHIDType.php +++ b/src/applications/auth/phid/PhabricatorAuthMessagePHIDType.php @@ -28,7 +28,11 @@ PhabricatorHandleQuery $query, array $handles, array $objects) { - return; + + foreach ($handles as $phid => $handle) { + $message = $objects[$phid]; + $handle->setURI($message->getURI()); + } } }