From 70cf5cc0d6e60706019f60dcda6bfa4baa959bf4 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 21 Oct 2017 14:02:37 -0700 Subject: fix bug with @s not going through in conversations split included @, meaning no handle started with @, so get_mentions() returned empty vec --- src/commands/twete.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commands') diff --git a/src/commands/twete.rs b/src/commands/twete.rs index a66d5eb..c399df1 100644 --- a/src/commands/twete.rs +++ b/src/commands/twete.rs @@ -95,7 +95,7 @@ fn rep(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) { if let Some(twete) = tweeter.retrieve_tweet(&TweetId::Bare(inner_twid)) { // get handles to reply to... let author_handle = tweeter.retrieve_user(&twete.author_id).unwrap().handle.to_owned(); - let mut ats: Vec = twete.get_mentions().into_iter().map(|x| x.to_owned()).collect(); //std::collections::HashSet::new(); + let mut ats: Vec = twete.get_mentions(); //std::collections::HashSet::new(); /* for handle in twete.get_mentions() { ats.insert(handle); -- cgit v1.1