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

Transactions - fix doorkeeper feed story error

Summary: missing a setHandles on this codepath I think...? Fixes T6300.

Test Plan: not actually tested - I just think this is the fix since the other renderX methods all do this setHandles thing and I can't figure out how handles get set otherwise...

Reviewers: epriestley, avivey

Reviewed By: epriestley, avivey

Subscribers: avivey, Korvin, epriestley

Maniphest Tasks: T6300

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

+3 -1
+3 -1
src/applications/transactions/feed/PhabricatorApplicationTransactionFeedStory.php
··· 110 110 $xactions = array(); 111 111 $xaction_phids = $this->getValue('transactionPHIDs'); 112 112 foreach ($xaction_phids as $xaction_phid) { 113 - $xactions[] = $this->getObject($xaction_phid); 113 + $xaction = $this->getObject($xaction_phid); 114 + $xaction->setHandles($this->getHandles()); 115 + $xactions[] = $xaction; 114 116 } 115 117 116 118 $primary = $this->getPrimaryTransaction();