mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-21 13:00:56 +01:00
Fix a minor path encoding issue with git branches.
This commit is contained in:
parent
736f629a07
commit
71b2f4a567
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ class DiffusionGitRequest extends DiffusionRequest {
|
|||
|
||||
public function getUriPath() {
|
||||
return '/diffusion/'.$this->getCallsign().'/browse/'.
|
||||
$this->branch.'/'.$this->path;
|
||||
$this->getBranchURIComponent($this->branch).$this->path;
|
||||
}
|
||||
|
||||
public function getCommit() {
|
||||
|
|
Loading…
Reference in a new issue