@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, futher sort out auth exceptions in Conduit + access log.

+5 -3
+5 -3
src/applications/conduit/controller/api/PhabricatorConduitAPIController.php
··· 125 125 $this->actAsUser($api_request, $metadata['actAsUser']); 126 126 } 127 127 128 - $conduit_user = $api_request->getUser(); 129 - if ($conduit_user && $conduit_user->getPHID()) { 130 - $conduit_username = $conduit_user->getUsername(); 128 + if ($auth_error === null) { 129 + $conduit_user = $api_request->getUser(); 130 + if ($conduit_user && $conduit_user->getPHID()) { 131 + $conduit_username = $conduit_user->getUsername(); 132 + } 131 133 } 132 134 } 133 135