diff options
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); |