From: Michael Tremer Date: Wed, 4 Mar 2026 12:25:07 +0000 (+0000) Subject: ratelimiter: Use the correct variable to fetch the API key X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb9906755bff09d3ccaded7460476bc8d01ff9e5;p=dbl.git ratelimiter: Use the correct variable to fetch the API key Signed-off-by: Michael Tremer --- diff --git a/src/dbl/ratelimiter.py b/src/dbl/ratelimiter.py index 173aac0..6ed31bf 100644 --- a/src/dbl/ratelimiter.py +++ b/src/dbl/ratelimiter.py @@ -135,7 +135,7 @@ class RateLimiterRequest(object): # Fetch the API key if self.api_key: # Fetch the API key - key = await self.backend.auth(api_key) + key = await self.backend.auth(self.api_key) # Check if the user is actually properly authenticated if key: