summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-10-30 14:13:10 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-10-30 14:13:10 -0700
commitdd978c3e57f2ee297746c317a8ac246f0a2b5d22 (patch)
tree2838ff3c8ed925f0d727f3dd484cee4f2b2f5c27 /web
parent84faccb7b74dba773cd72e2d0cebdd5bf6a34566 (diff)
downloadchat-dd978c3e57f2ee297746c317a8ac246f0a2b5d22.tar.gz
chat-dd978c3e57f2ee297746c317a8ac246f0a2b5d22.tar.bz2
chat-dd978c3e57f2ee297746c317a8ac246f0a2b5d22.zip
Added Safari 7 and IE10 to the list of unsupported browsers
Diffstat (limited to 'web')
-rw-r--r--web/web.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/web.go b/web/web.go
index 424adea93..34f4df08f 100644
--- a/web/web.go
+++ b/web/web.go
@@ -132,7 +132,7 @@ func watchAndParseTemplates() {
}
}
-var browsersNotSupported string = "MSIE/8;MSIE/9;Internet Explorer/8;Internet Explorer/9"
+var browsersNotSupported string = "MSIE/8;MSIE/9;MSIE/10;Internet Explorer/8;Internet Explorer/9;Internet Explorer/10;Safari/7"
func CheckBrowserCompatability(c *api.Context, r *http.Request) bool {
ua := user_agent.New(r.UserAgent())
@@ -143,7 +143,7 @@ func CheckBrowserCompatability(c *api.Context, r *http.Request) bool {
version := strings.Split(browser, "/")
if strings.HasPrefix(bname, version[0]) && strings.HasPrefix(bversion, version[1]) {
- c.Err = model.NewAppError("CheckBrowserCompatability", "Your current browser is not supported, please upgrade to one of the following browsers: Google Chrome 21 or higher, Internet Explorer 10 or higher, FireFox 14 or higher", "")
+ c.Err = model.NewAppError("CheckBrowserCompatability", "Your current browser is not supported, please upgrade to one of the following browsers: Google Chrome 21 or higher, Internet Explorer 11 or higher, FireFox 14 or higher, Safari 8 or higher", "")
return false
}
}