summaryrefslogtreecommitdiffstats
path: root/web/handlers.go
diff options
context:
space:
mode:
authorJesse Hallam <jesse.hallam@gmail.com>2018-07-11 04:13:37 -0400
committerCarlos Tadeu Panato Junior <ctadeu@gmail.com>2018-07-11 10:13:37 +0200
commit7c08ff99864721956d1496b8114fa54dd33569f0 (patch)
treec905cd1609ffe1422bee81743d225da0ef2abc92 /web/handlers.go
parentdccd95bc67779a5b83a2660aec0cf4622cd56550 (diff)
downloadchat-7c08ff99864721956d1496b8114fa54dd33569f0.tar.gz
chat-7c08ff99864721956d1496b8114fa54dd33569f0.tar.bz2
chat-7c08ff99864721956d1496b8114fa54dd33569f0.zip
MM-11241: fix context site url header (#9079)
* fix context's SiteURLHeader to use the subpath This fixes various commands such as /open and /groupmsg, as well as OAuth related redirects. * MM-11246: also leverage GetSiteHeader() in completeSaml
Diffstat (limited to 'web/handlers.go')
-rw-r--r--web/handlers.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/web/handlers.go b/web/handlers.go
index c089f460b..71a43bc48 100644
--- a/web/handlers.go
+++ b/web/handlers.go
@@ -68,7 +68,9 @@ func (h Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
}
}
- c.SetSiteURLHeader(app.GetProtocol(r) + "://" + r.Host)
+ subpath, _ := utils.GetSubpathFromConfig(c.App.Config())
+ siteURLHeader := app.GetProtocol(r) + "://" + r.Host + subpath
+ c.SetSiteURLHeader(siteURLHeader)
w.Header().Set(model.HEADER_REQUEST_ID, c.RequestId)
w.Header().Set(model.HEADER_VERSION_ID, fmt.Sprintf("%v.%v.%v.%v", model.CurrentVersion, model.BuildNumber, c.App.ClientConfigHash(), c.App.License() != nil))