diff options
author | Andy Wortman <ixineeringeverywhere@gmail.com> | 2017-12-02 22:50:46 -0800 |
---|---|---|
committer | Andy Wortman <ixineeringeverywhere@gmail.com> | 2017-12-03 01:27:58 -0800 |
commit | eb81ec6d98ae0f3e64ce86efc4ac7071358c8a8e (patch) | |
tree | 3306415350ea120f179286a3124bafefdeb21a7c /src/tw | |
parent | 8751083a2c25d4ae374916727f96346754cee131 (diff) |
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)
Diffstat (limited to 'src/tw')
-rw-r--r-- | src/tw/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
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); |