From f50ba4fb070acc38f015f9e6d03a6e8db8a01c63 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 21 Aug 2014 10:54:07 -0700 Subject: [PATCH] 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 --- src/applications/herald/adapter/HeraldDifferentialAdapter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/herald/adapter/HeraldDifferentialAdapter.php b/src/applications/herald/adapter/HeraldDifferentialAdapter.php index 873f18a2dd..e1e7628e49 100644 --- a/src/applications/herald/adapter/HeraldDifferentialAdapter.php +++ b/src/applications/herald/adapter/HeraldDifferentialAdapter.php @@ -27,7 +27,7 @@ abstract class HeraldDifferentialAdapter extends HeraldAdapter { ->needProjectPHIDs(true) ->executeOne(); } - $this->repository = false; + $this->repository = $repository; } return $this->repository;