Uncommited changes synced
[gitlive] / GitMonitorQueue.vala
index 15683df..ff3bd28 100644 (file)
@@ -41,12 +41,10 @@ public class GitMonitorQueue : MonitorNamePathDir {
 
                        this.vname =  this.vdir + (this.vdir.length > 0 ? "/" : "") + this.name;
                        
-                       this.repo = GitRepo.get(this.gitpath);
+                       this.repo = GitRepo.get_sync(this.gitpath);
                        
                        // trigger the suggestion to start a new branch
-                       if (!this.shouldIgnore() && !this.repo.is_wip_branch()) {
-                               NewBranch.singleton().show(this.repo);
-                       }
+                       
                }