From 0493edf8e6f29a74e69a98748a0522c61fd0e791 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 23 Sep 2025 18:00:43 -0400 Subject: [PATCH] Removed the last bit from current message. Not needed, and may actually be confusing. --- speech.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speech.py b/speech.py index 0bc818b..d9e0db6 100644 --- a/speech.py +++ b/speech.py @@ -377,7 +377,7 @@ def speak_current(): history_service = SpeechHistoryService.get_instance() message = history_service.get_most_recent() if message: - speak("Last: " + message, interrupt=True, priority="important", add_to_history=False) + speak(message, interrupt=True, priority="important", add_to_history=False) else: speak("No messages in history", interrupt=True, priority="important", add_to_history=False) except ImportError: