mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 20:40: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:
parent
d90f44ef20
commit
dc43123494
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ final class PhabricatorRepositorySvnCommitMessageParserWorker
|
|||
PhabricatorRepository $repository,
|
||||
PhabricatorRepositoryCommit $commit) {
|
||||
|
||||
$uri = $repository->getDetail('remote-uri');
|
||||
$uri = $repository->getSubversionPathURI();
|
||||
|
||||
$log = $this->getSVNLogXMLObject(
|
||||
$uri,
|
||||
|
|
Loading…
Reference in a new issue