@@ -0,0 +1,14 @@
package tower
import "strings"
func normalizePath(path string) string {
if path == "" {
return "/"
}
path = strings.TrimLeft(path, "/")
path = strings.TrimRight(path, "/")
return "/" + path
The note is not visible to the blocked user.