Mark Rousskov před 5 roky
rodič
revize
624265ce6a
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/handlers/notification.rs

+ 1 - 1
src/handlers/notification.rs

@@ -86,7 +86,7 @@ pub async fn handle(ctx: &Context, event: &Event) -> anyhow::Result<()> {
         Event::IssueComment(e) => format!("Comment on {}", e.issue.title),
     };
 
-    let caps = parser::get_mentions(body)
+    let mut caps = parser::get_mentions(body)
         .into_iter()
         .collect::<HashSet<_>>();