diff --git a/src/applications/maniphest/editor/ManiphestTransactionEditor.php b/src/applications/maniphest/editor/ManiphestTransactionEditor.php --- a/src/applications/maniphest/editor/ManiphestTransactionEditor.php +++ b/src/applications/maniphest/editor/ManiphestTransactionEditor.php @@ -386,10 +386,14 @@ } protected function getMailTo(PhabricatorLiskDAO $object) { - return array( - $object->getOwnerPHID(), - $this->getActingAsPHID(), - ); + $phids = array(); + + if ($object->getOwnerPHID()) { + $phids[] = $object->getOwnerPHID(); + } + $phids[] = $this->getActingAsPHID(); + + return $phids; } public function getMailTagsMap() {