@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 mail handling error -- return empty array if we have no $addresses

Test Plan: pushing it live to test

+3
+3
src/applications/metamta/storage/PhabricatorMetaMTAReceivedMail.php
··· 60 60 } 61 61 62 62 private function loadPHIDsFromAddresses(array $addresses) { 63 + if (empty($addresses)) { 64 + return array(); 65 + } 63 66 $users = id(new PhabricatorUserEmail()) 64 67 ->loadAllWhere('address IN (%Ls)', $addresses); 65 68 $user_phids = mpull($users, 'getUserPHID');