1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 05:12:41 +01:00

Fix herald "Repository" rule for Revisions and Diffs

Summary: This was broken by rP5ac36e8 by a derpy typo.

Test Plan: Ran dry run against a revision with a a repository, saw the field fill in on the transcript.

Reviewers: nickz, btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D10326
This commit is contained in:
epriestley 2014-08-21 10:54:07 -07:00
parent 3273874744
commit f50ba4fb07

View file

@ -27,7 +27,7 @@ abstract class HeraldDifferentialAdapter extends HeraldAdapter {
->needProjectPHIDs(true) ->needProjectPHIDs(true)
->executeOne(); ->executeOne();
} }
$this->repository = false; $this->repository = $repository;
} }
return $this->repository; return $this->repository;