aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/display/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display/mod.rs b/src/display/mod.rs
index 04b200f..37de481 100644
--- a/src/display/mod.rs
+++ b/src/display/mod.rs
@@ -752,7 +752,7 @@ pub fn render_twete_no_recurse(twete_id: &TweetId, tweeter: &tw::TwitterCache, d
let mut author_string = short_display_summary(&tweet_author);
if tweet_author.protected {
- id_string.push_str(&format!(" {}locked{}", termion::style::Underline, termion::style::Reset));
+ id_string.push_str(&format!(" {}locked{}", termion::style::Underline, termion::style::NoUnderline));
}
if let Some(reply_id) = tweet.reply_to_tweet.clone() {