mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-30 01:10:58 +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,
|
PhabricatorRepository $repository,
|
||||||
PhabricatorRepositoryCommit $commit) {
|
PhabricatorRepositoryCommit $commit) {
|
||||||
|
|
||||||
$uri = $repository->getDetail('remote-uri');
|
$uri = $repository->getSubversionPathURI();
|
||||||
|
|
||||||
$log = $this->getSVNLogXMLObject(
|
$log = $this->getSVNLogXMLObject(
|
||||||
$uri,
|
$uri,
|
||||||
|
|
Loading…
Reference in a new issue