diff --git a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php index ac4d56ba16..c5390de362 100644 --- a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php +++ b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php @@ -1095,13 +1095,6 @@ abstract class PhabricatorApplicationTransactionEditor // We are the Herald editor, so stop work here and return the updated // transactions. return $xactions; - } else if ($this->getIsInverseEdgeEditor()) { - // If we're applying inverse edge transactions, don't trigger Herald. - // From a product perspective, the current set of inverse edges (most - // often, mentions) aren't things users would expect to trigger Herald. - // From a technical perspective, objects loaded by the inverse editor may - // not have enough data to execute rules. At least for now, just stop - // Herald from executing when applying inverse edges. } else if ($this->shouldApplyHeraldRules($object, $xactions)) { // We are not the Herald editor, so try to apply Herald rules. $herald_xactions = $this->applyHeraldRules($object, $xactions);