target: Simplify

This commit is contained in:
Bjørn Erik Pedersen 2016-11-23 18:46:32 +01:00
parent 3739871f1e
commit a721fbed1d

View file

@ -104,9 +104,7 @@ func (h *HTMLRedirectAlias) Translate(alias string) (aliasPath string, err error
} }
// Add the final touch // Add the final touch
if strings.HasPrefix(alias, helpers.FilePathSeparator) { alias = strings.TrimPrefix(alias, helpers.FilePathSeparator)
alias = alias[1:]
}
if strings.HasSuffix(alias, helpers.FilePathSeparator) { if strings.HasSuffix(alias, helpers.FilePathSeparator) {
alias = alias + "index.html" alias = alias + "index.html"
} else if !strings.HasSuffix(alias, ".html") { } else if !strings.HasSuffix(alias, ".html") {