fix: remove 200-char truncation on quoted tweet in detail view

This commit is contained in:
jackwener
2026-03-14 20:03:20 +08:00
parent 4b94b769ba
commit eec439a801
2 changed files with 2 additions and 2 deletions

View File

@@ -128,7 +128,7 @@ def print_tweet_detail(tweet: Tweet, console: Optional[Console] = None) -> None:
qt = tweet.quoted_tweet
body_parts.append("")
body_parts.append("┌── Quoted @%s ──" % qt.author.screen_name)
body_parts.append(qt.text[:200])
body_parts.append(qt.text)
body_parts.append("")
body_parts.append(