tools/screenshots: Fix custom headers crash when using custom options.

This commit is contained in:
Niloth P 2024-11-19 15:28:30 +05:30
parent a8abcf5210
commit 3fe77b67ee
1 changed files with 2 additions and 1 deletions

View File

@ -172,7 +172,8 @@ def send_bot_payload_message(
data, json_fixture, fixture_name = get_fixture_info(fixture_path)
headers = get_requests_headers(integration.name, fixture_name)
headers.update(config.custom_headers)
if config.custom_headers:
headers.update(config.custom_headers)
if config.use_basic_auth:
credentials = base64.b64encode(f"{bot.email}:{bot.api_key}".encode()).decode()
auth = f"basic {credentials}"