From 974caaff42e84be28774a8b996486244be9e2ff8 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 6 Dec 2024 13:18:52 -0800 Subject: [PATCH] Update system.py --- modules/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system.py b/modules/system.py index d7ce971..8d4f111 100644 --- a/modules/system.py +++ b/modules/system.py @@ -445,7 +445,7 @@ def messageChunker(message): # remove junk sentences and append to the previous sentence this may exceed the MESSAGE_CHUNK_SIZE by 3 if len(sentence) < 4: if current_chunk: - current_chunk += ' ' + sentence + current_chunk += sentence else: current_chunk = sentence continue