GitMonitor.vala
authorAlan Knowles <alan@akbkhome.com>
Sat, 10 May 2014 14:40:35 +0000 (22:40 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sat, 10 May 2014 14:40:35 +0000 (22:40 +0800)
GitMonitor.vala

index 0c77a6a..020878c 100644 (file)
@@ -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);