diff --git a/src/applications/audit/editor/PhabricatorAuditCommentEditor.php b/src/applications/audit/editor/PhabricatorAuditCommentEditor.php index d64a48c8ca..f001b4b43f 100644 --- a/src/applications/audit/editor/PhabricatorAuditCommentEditor.php +++ b/src/applications/audit/editor/PhabricatorAuditCommentEditor.php @@ -381,7 +381,9 @@ final class PhabricatorAuditCommentEditor extends PhabricatorEditor { $commit_phid = $commit->getPHID(); $phids = array($commit_phid); - $handles = id(new PhabricatorObjectHandleData($phids))->loadHandles(); + $handles = id(new PhabricatorObjectHandleData($phids)) + ->setViewer($this->getActor()) + ->loadHandles(); $handle = $handles[$commit_phid]; $name = $handle->getName();