mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
fix mail handler for conpherence try 2
Summary: the editor methods are protected so just build a reply handler directly Test Plan: push it live and try again Reviewers: epriestley, chad Reviewed By: chad CC: aran, Korvin Maniphest Tasks: T2399 Differential Revision: https://secure.phabricator.com/D4670
This commit is contained in:
parent
ab80d52290
commit
3f91559b8a
1 changed files with 2 additions and 3 deletions
|
@ -290,9 +290,8 @@ final class PhabricatorMetaMTAReceivedMail extends PhabricatorMetaMTADAO {
|
|||
$handler = PhabricatorAuditCommentEditor::newReplyHandlerForCommit(
|
||||
$receiver);
|
||||
} else if ($receiver instanceof ConpherenceThread) {
|
||||
$handler = id(new ConpherenceEditor())
|
||||
->setActor($user)
|
||||
->buildReplyHandler($receiver);
|
||||
$handler = id(new ConpherenceReplyHandler())
|
||||
->setMailReceiver($receiver);
|
||||
}
|
||||
|
||||
$handler->setActor($user);
|
||||
|
|
Loading…
Reference in a new issue