fix: remove 200-char truncation on quoted tweet in detail view
This commit is contained in:
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "twitter-cli"
|
||||
version = "0.8.2"
|
||||
version = "0.8.3"
|
||||
description = "A CLI for Twitter/X — feed, bookmarks, and user timeline in terminal"
|
||||
readme = "README.md"
|
||||
license = "Apache-2.0"
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user