@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.

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

authored by

William R. Otte and committed by
epriestley
dc431234 d90f44ef

+1 -1
+1 -1
src/applications/repository/worker/commitmessageparser/PhabricatorRepositorySvnCommitMessageParserWorker.php
··· 7 7 PhabricatorRepository $repository, 8 8 PhabricatorRepositoryCommit $commit) { 9 9 10 - $uri = $repository->getDetail('remote-uri'); 10 + $uri = $repository->getSubversionPathURI(); 11 11 12 12 $log = $this->getSVNLogXMLObject( 13 13 $uri,