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

Probably fix bad URI construction for Diffusion symbols

Summary: Ref T9532.

Test Plan: I don't have this configured locally but this seems very likely to be the correct fix. This list should be a list of PHIDs, but is a list of PHIDs followed by one PhabricatorRepository object.

Reviewers: avivey, chad

Reviewed By: chad

Maniphest Tasks: T9532

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

+1 -1
+1 -1
src/applications/diffusion/controller/DiffusionBrowseFileController.php
··· 288 288 289 289 $repo = $drequest->getRepository(); 290 290 $symbol_repos = nonempty($repo->getSymbolSources(), array()); 291 - $symbol_repos[] = $repo; 291 + $symbol_repos[] = $repo->getPHID(); 292 292 293 293 $lang = last(explode('.', $drequest->getPath())); 294 294 $repo_languages = $repo->getSymbolLanguages();