From f85e693b66fea7f7d4e8c14ea7f8d49810fad9df Mon Sep 17 00:00:00 2001 From: jungejason Date: Thu, 12 May 2011 09:01:16 -0700 Subject: [PATCH] Fix method name after D254 Summary: D254 removed DifferentialReplyHandler::getRevision(), but is still using it in two places. Correct them. Test Plan: send email email handler and verified it works. Reviewed By: epriestley Reviewers: tuomaspelkonen, epriestley CC: aran, epriestley Blame Revision: D254 Differential Revision: 277 --- .../differential/replyhandler/DifferentialReplyHandler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/differential/replyhandler/DifferentialReplyHandler.php b/src/applications/differential/replyhandler/DifferentialReplyHandler.php index c37b72c38c..e5eda3e040 100644 --- a/src/applications/differential/replyhandler/DifferentialReplyHandler.php +++ b/src/applications/differential/replyhandler/DifferentialReplyHandler.php @@ -112,7 +112,7 @@ class DifferentialReplyHandler extends PhabricatorMailReplyHandler { try { $editor = new DifferentialCommentEditor( - $this->getRevision(), + $this->getMailReceiver(), $actor->getPHID(), $command); @@ -124,7 +124,7 @@ class DifferentialReplyHandler extends PhabricatorMailReplyHandler { } catch (Exception $ex) { $exception_mail = new DifferentialExceptionMail( - $this->getRevision(), + $this->getMailReceiver(), $ex, $body);