diff options
Diffstat (limited to 'kvmd/plugins/auth/http.py')
-rw-r--r-- | kvmd/plugins/auth/http.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kvmd/plugins/auth/http.py b/kvmd/plugins/auth/http.py index 66e23ea1..4cba34fe 100644 --- a/kvmd/plugins/auth/http.py +++ b/kvmd/plugins/auth/http.py @@ -71,6 +71,8 @@ class Plugin(BaseAuthService): } async def authorize(self, user: str, passwd: str) -> bool: + assert user == user.strip() + assert user session = self.__ensure_session() try: async with session.request( |