mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 20:50:18 +01:00
Omit not needed end of slice
This commit is contained in:
parent
0605b8e271
commit
2f1de6fdb3
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue