@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 a missed call to setCommit() on DiffusionRequest

See: <https://github.com/facebook/phabricator/issues/608>

Test Plan: Viewed a Subversion diff. Grepped for `setCommit()` again.

Auditors: btrahan

+1 -1
+1 -1
src/applications/diffusion/conduit/ConduitAPI_diffusion_diffquery_Method.php
··· 56 56 } 57 57 58 58 $drequest = clone $drequest; 59 - $drequest->setCommit($effective_commit); 59 + $drequest->updateSymbolicCommit($effective_commit); 60 60 61 61 $path_change_query = DiffusionPathChangeQuery::newFromDiffusionRequest( 62 62 $drequest);