aboutsummaryrefslogtreecommitdiff
path: root/src/tw/mod.rs
diff options
context:
space:
mode:
authorAndy Wortman <ixineeringeverywhere@gmail.com>2017-12-02 22:50:46 -0800
committerAndy Wortman <ixineeringeverywhere@gmail.com>2017-12-03 01:27:58 -0800
commiteb81ec6d98ae0f3e64ce86efc4ac7071358c8a8e (patch)
tree3306415350ea120f179286a3124bafefdeb21a7c /src/tw/mod.rs
parent8751083a2c25d4ae374916727f96346754cee131 (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/mod.rs')
-rw-r--r--src/tw/mod.rs5
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);