fix workaround for reverse proxy, ssh, submodule

This commit is contained in:
Matthias Pioch 2015-10-24 22:46:13 +02:00
parent 78a4e71245
commit 8b92f9cca6
3 changed files with 6 additions and 8 deletions

View file

@ -6,6 +6,7 @@ package git
import (
"strings"
"github.com/gogits/gogs/modules/setting"
)
type SubModule struct {
@ -30,7 +31,7 @@ func NewSubModuleFile(c *Commit, refUrl, refId string) *SubModuleFile {
}
// RefUrl guesses and returns reference URL.
func (sf *SubModuleFile) RefUrl(appUrl string) string {
func (sf *SubModuleFile) RefUrl() string {
if sf.refUrl == "" {
return ""
}
@ -52,8 +53,8 @@ func (sf *SubModuleFile) RefUrl(appUrl string) string {
j := strings.LastIndex(url, ":")
if i > -1 && j > -1 {
// fix problem with reverse proxy works only with local server
if strings.Contains(appUrl,url[i+1:j]) {
return appUrl + url[j+1:]
if strings.Contains(setting.AppUrl,url[i+1:j]) {
return setting.AppUrl + url[j+1:]
} else {
return "http://" + url[i+1:j] + "/" + url[j+1:]
}