@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix a typo in the new "ApplicationEmailHeraldField"

Summary: This rule isn't quite right.

Test Plan: Shipped email in with a rule in effect, saw correct value in transcript.

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D13578

+1 -1
+1 -1
src/applications/metamta/herald/PhabricatorMetaMTAApplicationEmailHeraldField.php
··· 18 18 19 19 $email = $this->getAdapter()->getApplicationEmail(); 20 20 if ($email) { 21 - $phids[] = $email; 21 + $phids[] = $email->getPHID(); 22 22 } 23 23 24 24 return $phids;