Explorar el Código

Fix panic on major change topic creation

Mark Rousskov hace 4 años
padre
commit
832287f4cf
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/github.rs

+ 1 - 1
src/github.rs

@@ -355,7 +355,7 @@ impl Issue {
         ZulipGitHubReference {
             number: self.number,
             title: self.title.clone(),
-            repository: self.repository.get().unwrap().clone(),
+            repository: self.repository().clone(),
         }
     }