1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-20 20:40:56 +01:00

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
This commit is contained in:
epriestley 2014-05-15 04:45:13 -07:00
parent 15561a27c3
commit f2d72ced4b

View file

@ -56,7 +56,7 @@ final class ConduitAPI_diffusion_diffquery_Method
}
$drequest = clone $drequest;
$drequest->setCommit($effective_commit);
$drequest->updateSymbolicCommit($effective_commit);
$path_change_query = DiffusionPathChangeQuery::newFromDiffusionRequest(
$drequest);