From fc7eb32429da35c28c1f4b33de16925d1af5ef78 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 2 Nov 2018 12:17:53 +0800 Subject: [PATCH] GitMonitorQueue.vala --- GitMonitorQueue.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitMonitorQueue.vala b/GitMonitorQueue.vala index 561aa669..6ed40e7f 100644 --- a/GitMonitorQueue.vala +++ b/GitMonitorQueue.vala @@ -44,7 +44,7 @@ public class GitMonitorQueue : MonitorNamePathDir { this.repo = GitRepo.get(this.gitpath); // trigger the suggestion to start a new branch - if (!this.shouldIgnore() && !this.repo.currentBranch.name.has_prefix("wip_")) { + if (!this.shouldIgnore() && !this.repo.is_wip_branch()) { NewBranch.singleton().show(this.repo); } } -- 2.39.2