diff options
author | iximeow <me@iximeow.net> | 2017-12-02 22:50:46 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2017-12-03 01:27:58 -0800 |
commit | 911b121e46661abd40f5710466031e3db55f075c (patch) | |
tree | 3306415350ea120f179286a3124bafefdeb21a7c /src/tw | |
parent | 5c443f156ade38810eeaa7e63378714ba4607c51 (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); |