From a16b724583985f3156c3b918e195ef41e4ef4d0f Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Wed, 3 Mar 2021 14:34:27 +0100 Subject: [PATCH] do not try to attach an empty file --- setup-scripts/bot_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-scripts/bot_utils.py b/setup-scripts/bot_utils.py index 0f317780..9e918955 100644 --- a/setup-scripts/bot_utils.py +++ b/setup-scripts/bot_utils.py @@ -97,7 +97,7 @@ async def send_msg(client, msg, force_notify=False, file=None): # Add the portal name. msg = "**{}**: {}".format(portal_name, msg) - if isinstance(file, str): + if file and isinstance(file, str): is_json = is_json_string(file) content_type = "application/json" if is_json else "text/plain" ext = "json" if is_json else "txt"