remove debug statement

This commit is contained in:
ArabCoders 2025-03-07 01:14:05 +03:00
parent 6e52b3c356
commit 61fd6d45f6

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: