0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-01-12 09:30:35 -05:00

#3521 fix wiki HTTP/S clone URL does not have .wiki suffix

This commit is contained in:
Unknwon 2016-08-27 12:29:52 -07:00
parent 13a8823bd3
commit ce1e4348da

View file

@ -547,7 +547,7 @@ func (repo *Repository) cloneLink(isWiki bool) *CloneLink {
} else { } else {
cl.SSH = fmt.Sprintf("%s@%s:%s/%s.git", setting.RunUser, setting.SSH.Domain, repo.Owner.Name, repoName) cl.SSH = fmt.Sprintf("%s@%s:%s/%s.git", setting.RunUser, setting.SSH.Domain, repo.Owner.Name, repoName)
} }
cl.HTTPS = ComposeHTTPSCloneURL(repo.Owner.Name, repo.Name) cl.HTTPS = ComposeHTTPSCloneURL(repo.Owner.Name, repoName)
return cl return cl
} }