We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 021d849 + 8dbc9cd commit 5da1075Copy full SHA for 5da1075
src/handlers/mentions.rs
@@ -61,7 +61,9 @@ pub(super) async fn parse_input(
61
.filter(|(path, MentionsPathConfig { cc, .. })| {
62
let path = Path::new(path);
63
file_paths.iter().any(|p| p.starts_with(path))
64
- && !cc.iter().any(|r| r == &event.issue.user.login)
+ && !cc
65
+ .iter()
66
+ .any(|r| r.trim_start_matches('@') == &event.issue.user.login)
67
})
68
.map(|(key, _mention)| key.to_string())
69
.collect();
0 commit comments