@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.

Minor, fix an issue where fail to extract the author PHID from an edge transaction.

+4 -1
+4 -1
src/applications/maniphest/storage/ManiphestTransaction.php
··· 59 59 $phids[] = $this->getNewValue(); 60 60 break; 61 61 case ManiphestTransactionType::TYPE_EDGE: 62 - return array_keys($this->getOldValue() + $this->getNewValue()); 62 + $phids = array_merge( 63 + $phids, 64 + array_keys($this->getOldValue() + $this->getNewValue())); 65 + break; 63 66 case ManiphestTransactionType::TYPE_ATTACH: 64 67 $old = $this->getOldValue(); 65 68 $new = $this->getNewValue();