aboutsummaryrefslogtreecommitdiff
path: root/pkg/context/repo.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/context/repo.go')
-rw-r--r--pkg/context/repo.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/context/repo.go b/pkg/context/repo.go
index 00f0eaa1..a1924954 100644
--- a/pkg/context/repo.go
+++ b/pkg/context/repo.go
@@ -110,7 +110,7 @@ func (r *Repository) PullRequestURL(baseBranch, headBranch string) string {
// composeGoGetImport returns go-get-import meta content.
func composeGoGetImport(owner, repo string) string {
- return path.Join(setting.Domain, setting.AppSubUrl, owner, repo)
+ return path.Join(setting.Domain, setting.AppSubURL, owner, repo)
}
// earlyResponseForGoGetMeta responses appropriate go-get meta with status 200
@@ -311,7 +311,7 @@ func RepoAssignment(pages ...bool) macaron.Handler {
if ctx.Query("go-get") == "1" {
ctx.Data["GoGetImport"] = composeGoGetImport(owner.Name, repo.Name)
- prefix := setting.AppUrl + path.Join(owner.Name, repo.Name, "src", ctx.Repo.BranchName)
+ prefix := setting.AppURL + path.Join(owner.Name, repo.Name, "src", ctx.Repo.BranchName)
ctx.Data["GoDocDirectory"] = prefix + "{/dir}"
ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}"
}