From: Michael Tremer Date: Tue, 3 Mar 2026 14:34:20 +0000 (+0000) Subject: auth: Actually check the API keys X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a5915466e224592fd7175da63025f7a8351ea847;p=dbl.git auth: Actually check the API keys Signed-off-by: Michael Tremer --- diff --git a/src/dbl/auth.py b/src/dbl/auth.py index a2806b6..75fc1df 100644 --- a/src/dbl/auth.py +++ b/src/dbl/auth.py @@ -76,7 +76,7 @@ class Auth(object): # Check all keys async for key in keys: # Return True if the key matches the secret - if key.check(secret): + if await key.check(secret): return key # Log if no API keys could be found