From eb81ec6d98ae0f3e64ce86efc4ac7071358c8a8e Mon Sep 17 00:00:00 2001 From: Andy Wortman Date: Sat, 2 Dec 2017 22:50:46 -0800 Subject: rebrand + fix cache/profile json also set current profile to first auth'd account, when starting from a blank slate. silence follower changes because it's not sanely displayed yet (and may never be) --- src/tw/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/tw/mod.rs') diff --git a/src/tw/mod.rs b/src/tw/mod.rs index 49759e2..0a073c9 100644 --- a/src/tw/mod.rs +++ b/src/tw/mod.rs @@ -1042,6 +1042,10 @@ fn handle_twitter_welcome( match followers_changes { Ok((my_name, new_following, lost_following, (new_followers, lost_followers))) => { + /* + * This *will* spam you on login, and isn't very useful. + * TODO: present this sanely. + * for user in new_following { display_info.status(format!("New following! {}", user)); } @@ -1054,6 +1058,7 @@ fn handle_twitter_welcome( for user in lost_followers { display_info.status(format!("{} isn't following anymore", user)); } + */ }, Err(e) => { display_info.status(e); -- cgit v1.1