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

This 'host' thing is not going to end well.

+3 -3
+3 -3
src/infrastructure/daemon/bot/PhabricatorBot.php
··· 58 58 // Normalize the path component of the URI so users can enter the 59 59 // domain without the "/api/" part. 60 60 $conduit_uri = new PhutilURI($conduit_uri); 61 - $conduit_uri->setPath('/api/'); 62 - $conduit_host = $conduit_uri->getDomain(); 63 - $conduit_uri = (string)$conduit_uri; 61 + 62 + $conduit_host = (string)$conduit_uri->setPath('/'); 63 + $conduit_uri = (string)$conduit_uri->setPath('/api/'); 64 64 65 65 $conduit = new ConduitClient($conduit_uri); 66 66 $response = $conduit->callMethodSynchronous(