From 02c33a48c63a44ede0f02dcfb689857cdb73eeec Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Sat, 10 May 2014 22:40:35 +0800 Subject: [PATCH] GitMonitor.vala --- GitMonitor.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GitMonitor.vala b/GitMonitor.vala index 0c77a6aa..020878c9 100644 --- a/GitMonitor.vala +++ b/GitMonitor.vala @@ -588,13 +588,13 @@ public class GitMonitor : Monitor } // needs to handle move to/from unsupported types.. - if (this.shouldIgnore(src)) { + if (src.shouldIgnore()) { this.onCreated(dest); this.onChangesDoneHint(dest); return; } - if (this.shouldIgnore(dest)) { + if (dest.shouldIgnore()) { this.onDeleted(src); -- 2.39.2