Fix AppFullLink (#37325)
Fix a bug the checkout command line hint becomes `git fetch -u https://gitea.combircni/tea`
This commit is contained in:
@@ -88,7 +88,7 @@ func (c TemplateContext) AppFullLink(link ...string) template.URL {
|
||||
if len(link) == 0 {
|
||||
return template.URL(s)
|
||||
}
|
||||
return template.URL(s + strings.TrimPrefix(link[0], "/"))
|
||||
return template.URL(s + "/" + strings.TrimPrefix(link[0], "/"))
|
||||
}
|
||||
|
||||
var globalVars = sync.OnceValue(func() (ret struct {
|
||||
|
||||
Reference in New Issue
Block a user