Omit not needed end of slice

This commit is contained in:
Andrea Spacca 2018-07-09 00:39:57 +02:00
parent 0605b8e271
commit 2f1de6fdb3

View file

@ -111,7 +111,7 @@ func ProfileListener(s string) OptionFn {
func WebPath(s string) OptionFn {
return func(srvr *Server) {
if s[len(s)-1:len(s)] != "/" {
if s[len(s)-1:] != "/" {
s = s + string(filepath.Separator)
}
@ -121,7 +121,7 @@ func WebPath(s string) OptionFn {
func TempPath(s string) OptionFn {
return func(srvr *Server) {
if s[len(s)-1:len(s)] != "/" {
if s[len(s)-1:] != "/" {
s = s + string(filepath.Separator)
}