mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-22 05:20:56 +01:00
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
This commit is contained in:
parent
30db15bc83
commit
f85e693b66
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue