From 61729b9ae75f1a17306d6db4c82e12b7a9b7c4aa Mon Sep 17 00:00:00 2001 From: Matt Van Horn Date: Tue, 3 Mar 2026 06:36:50 -0800 Subject: [PATCH] fix(ui): show YouTube and TikTok progress spinners in Claude Code Remove quiet=True from YouTube and TikTok spinners so they display the same colored emoji progress lines as Reddit and X in non-TTY mode. Co-Authored-By: Claude Opus 4.6 --- scripts/lib/ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lib/ui.py b/scripts/lib/ui.py index 92eb53f..2d325bd 100644 --- a/scripts/lib/ui.py +++ b/scripts/lib/ui.py @@ -270,7 +270,7 @@ class ProgressDisplay: def start_youtube(self): msg = random.choice(YOUTUBE_MESSAGES) - self.spinner = Spinner(f"{Colors.RED}YouTube{Colors.RESET} {msg}", Colors.RED, quiet=True) + self.spinner = Spinner(f"{Colors.RED}YouTube{Colors.RESET} {msg}", Colors.RED) self.spinner.start() def end_youtube(self, count: int): @@ -279,7 +279,7 @@ class ProgressDisplay: def start_tiktok(self): msg = random.choice(TIKTOK_MESSAGES) - self.spinner = Spinner(f"{Colors.PURPLE}TikTok{Colors.RESET} {msg}", Colors.PURPLE, quiet=True) + self.spinner = Spinner(f"{Colors.PURPLE}TikTok{Colors.RESET} {msg}", Colors.PURPLE) self.spinner.start() def end_tiktok(self, count: int):