diff --git a/src/applications/differential/query/DifferentialRevisionQuery.php b/src/applications/differential/query/DifferentialRevisionQuery.php --- a/src/applications/differential/query/DifferentialRevisionQuery.php +++ b/src/applications/differential/query/DifferentialRevisionQuery.php @@ -466,9 +466,12 @@ $basic_authors = $this->authors; $basic_reviewers = $this->reviewers; + $responsible_authors = phid_group_by_type( + $this->responsibles)[PhabricatorPeopleUserPHIDType::TYPECONST]; + try { // Build the query where the responsible users are authors. - $this->authors = array_merge($basic_authors, $this->responsibles); + $this->authors = array_merge($basic_authors, $responsible_authors); $this->reviewers = $basic_reviewers; $selects[] = $this->buildSelectStatement($conn);