From 1b600a35f6935df80f8527eb1cd24ea836fc1346 Mon Sep 17 00:00:00 2001 From: Johnny Shields <27655+johnnyshields@users.noreply.github.com> Date: Fri, 24 Nov 2023 02:49:44 +0900 Subject: [PATCH] Update attack.rb --- lib/rack/attack.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rack/attack.rb b/lib/rack/attack.rb index 435c5070..bb3d5efc 100644 --- a/lib/rack/attack.rb +++ b/lib/rack/attack.rb @@ -102,7 +102,7 @@ def initialize(app) end def call(env) - return @app.call(env) if handle_call(env) + @app.call(env) if handle_call(env) end private