From 42cf0afeffc5132d0e4e975d853fcfa236e129bf Mon Sep 17 00:00:00 2001 From: Schimon Jehudah Date: Tue, 2 Jan 2024 12:58:45 +0000 Subject: [PATCH] Fix respond error --- slixfeed/xmpp/process.py | 1 + 1 file changed, 1 insertion(+) diff --git a/slixfeed/xmpp/process.py b/slixfeed/xmpp/process.py index 09e632e..0e00e8c 100644 --- a/slixfeed/xmpp/process.py +++ b/slixfeed/xmpp/process.py @@ -712,6 +712,7 @@ async def message(self, message): # commands are sent one close to the next # if response: message.reply(response).send() + response = "EMPTY MESSAGE - ACTION ONLY" log_dir = get_default_dbdir() if not os.path.isdir(log_dir): os.mkdir(log_dir)