소스 검색

fix compilation

Mark Rousskov 3 년 전
부모
커밋
77219893d6
1개의 변경된 파일10개의 추가작업 그리고 10개의 파일을 삭제
  1. 10 10
      src/handlers/autolabel.rs

+ 10 - 10
src/handlers/autolabel.rs

@@ -12,21 +12,21 @@ pub(super) async fn parse_input(
     event: &IssuesEvent,
     config: Option<&AutolabelConfig>,
 ) -> Result<Option<AutolabelInput>, String> {
-    if let Some(diff) = event
-        .diff_between(&ctx.github)
-        .await
-        .map_err(|e| {
-            log::error!("failed to fetch diff: {:?}", e);
-        })
-        .unwrap_or_default()
-    {
-        if let Some(config) = config {
+    if let Some(config) = config {
+        if let Some(diff) = event
+            .diff_between(&ctx.github)
+            .await
+            .map_err(|e| {
+                log::error!("failed to fetch diff: {:?}", e);
+            })
+            .unwrap_or_default()
+        {
             let mut files = Vec::new();
             for line in diff.lines() {
                 // mostly copied from highfive
                 if line.starts_with("diff --git ") {
                     files.push(
-                        &line[line.find(" b/").unwrap()..]
+                        line[line.find(" b/").unwrap()..]
                             .strip_prefix(" b/")
                             .unwrap(),
                     );