Compare commits

...

1 Commits

Author SHA1 Message Date
Storm Dragon
0493edf8e6 Removed the last bit from current message. Not needed, and may actually be confusing. 2025-09-23 18:00:43 -04:00

View File

@@ -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: