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

Get the proper Subversion URI for hosted repositories.

Summary: The commit change parser worker was incorrectly getting the remote uri; calling getSubversionPathURI instead behaves properly for hosted repositories.  Fixes T4236.

Test Plan: Observed that my hosted subversion repositories finally had history in Diffusion.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Maniphest Tasks: T4236

Differential Revision: https://secure.phabricator.com/D7794
This commit is contained in:
William R. Otte 2013-12-18 15:01:36 -08:00 committed by epriestley
parent d90f44ef20
commit dc43123494

View file

@ -7,7 +7,7 @@ final class PhabricatorRepositorySvnCommitMessageParserWorker
PhabricatorRepository $repository,
PhabricatorRepositoryCommit $commit) {
$uri = $repository->getDetail('remote-uri');
$uri = $repository->getSubversionPathURI();
$log = $this->getSVNLogXMLObject(
$uri,