Merge pull request #202 from arabcoders/dev

remove debug statement
This commit is contained in:
Abdulmohsen 2025-03-07 01:27:25 +03:00 committed by GitHub
commit c944c36028
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -289,7 +289,6 @@ class HttpAPI(Common):
try:
data = decrypt_data(auth_cookie, key=Config.get_instance().secret_key)
if data is not None:
LOG.info(f"Decoded cookie data '{data}'.")
data = base64.b64encode(data.encode()).decode()
auth_header = f"Basic {data}"
except Exception as e: