aboutsummaryrefslogtreecommitdiff
path: root/src/tw/tweet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tw/tweet.rs')
-rw-r--r--src/tw/tweet.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/tw/tweet.rs b/src/tw/tweet.rs
index 72802ca..a3fdde3 100644
--- a/src/tw/tweet.rs
+++ b/src/tw/tweet.rs
@@ -22,17 +22,19 @@ pub struct Tweet {
}
impl Tweet {
- pub fn get_mentions(&self) -> Vec<&str> {
+ pub fn get_mentions(&self) -> Vec<String> {
self.text.split(&[
',', '.', '/', ';', '\'',
'[', ']', '\\', '~', '!',
- '@', '#', '$', '%', '^',
+ '#', '$', '%', '^',
'&', '*', '(', ')', '-',
'=', '{', '}', '|', ':',
'"', '<', '>', '?', '`',
' ' // forgot this initially. awkward.
][..])
- .filter(|x| x.starts_with("@") && x.len() > 1)
+ .filter(|x| x.starts_with("@") && x.len() > 1 && x.chars().skip(1).all(|c| c != '@'))
+ // discard @, mentions are just the usernames.
+ .map(|handle| handle.chars().skip(1).collect())
.collect()
}