From b29290d6ba395e82793e1ef6a00e7bfd1088eeb0 Mon Sep 17 00:00:00 2001 From: ramforth Date: Wed, 29 Oct 2025 12:53:20 +0100 Subject: [PATCH] Fix: Correctly render rich color tags in startup messages. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index cf2cc5d..e0ee1a3 100644 --- a/main.py +++ b/main.py @@ -96,7 +96,7 @@ def main(): # Display initial messages using rich.Live for a few seconds with Live(console=console, screen=True, refresh_per_second=4) as live: - live.update(Text(f"[green]Found live chat ID: {live_chat_id}[/green]\n[green]Chat will be logged to {log_filename}[/green]", justify="center")) + live.update(Text(f"[green]Found live chat ID: {live_chat_id}[/green]\n[green]Chat will be logged to {log_filename}[/green]", justify="center", markup=True)) time.sleep(5) next_page_token = None