Skip to content
This repository was archived by the owner on Mar 23, 2025. It is now read-only.

Commit 156e511

Browse files
committed
Fix failed build (omitted parentheses)
1 parent 5cd6f3e commit 156e511

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/handlers/auth_handler.cr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ class AuthHandler < Kemal::Handler
6363
end
6464

6565
def handle_auth(env)
66-
if request_path_startswith env, ["/login", "/logout"] ||
67-
requesting_static_file env
66+
if request_path_startswith(env, ["/login", "/logout"]) ||
67+
requesting_static_file env
6868
return call_next(env)
6969
end
7070

0 commit comments

Comments
 (0)