Fixed error with LXMF send

This commit is contained in:
SebastianObi 2022-10-22 09:04:32 +02:00
parent b4bc35ee31
commit f2db594c29
5 changed files with 6 additions and 8 deletions

View file

@ -763,7 +763,7 @@ def output_now():
if search != "":
output = re.sub(search, config_get(CONFIG, "message", "send_regex_replace"), output)
LXMF_CONNECTION.send(SESSION["source"], content_prefix + output + content_suffix, "")
LXMF_CONNECTION.send(SESSION["source"], content_prefix + output + content_suffix)
return True