@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 error where blank email addresses were sneaking in the stack

Summary: array_filter to the rescue

Test Plan: mostly lots of reasoning (as opposed to making a fake user with a blank email address to reproduce)

Reviewers: epriestley, chad

Reviewed By: chad

CC: aran, Korvin

Maniphest Tasks: T2052

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

+1 -1
+1 -1
src/applications/metamta/storage/PhabricatorMetaMTAReceivedMail.php
··· 356 356 foreach (explode(',', $addresses) as $address) { 357 357 $raw_addresses[] = $this->getRawEmailAddress($address); 358 358 } 359 - return $raw_addresses; 359 + return array_filter($raw_addresses); 360 360 } 361 361 362 362 private function lookupPublicUser() {