Change channel fingerprint color to orange

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Aaron D. Lee
2026-01-08 00:03:39 -05:00
parent b13a9fcd3f
commit 55e78d0503

View File

@@ -857,7 +857,7 @@ def info(ctx, full):
# Channel # Channel
if channel_fingerprint: if channel_fingerprint:
masked = f"{channel_fingerprint[:4]}••••••••{channel_fingerprint[-4:]}" masked = f"{channel_fingerprint[:4]}••••••••{channel_fingerprint[-4:]}"
click.echo(f" Channel: \033[36m{masked}\033[0m") # Cyan for private channel click.echo(f" Channel: \033[38;5;208m{masked}\033[0m") # Orange for private channel
else: else:
click.echo(" Channel: \033[33mpublic\033[0m") click.echo(" Channel: \033[33mpublic\033[0m")