aboutsummaryrefslogtreecommitdiff
path: root/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'server.go')
-rw-r--r--server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.go b/server.go
index 3f521e7..1de4eae 100644
--- a/server.go
+++ b/server.go
@@ -286,7 +286,7 @@ func New(imapURL, smtpURL string) *echo.Echo {
cookie, err := ctx.Cookie(cookieName)
if err == http.ErrNoCookie {
// Require auth for all pages except /login
- if ctx.Path() == "/login" {
+ if ctx.Path() == "/login" || strings.HasPrefix(ctx.Path(), "/assets/") {
return next(ctx)
} else {
return ctx.Redirect(http.StatusFound, "/login")