From: Alan Knowles Date: Tue, 19 Jun 2018 02:18:22 +0000 (+0800) Subject: src/strip.vala X-Git-Url: http://git.roojs.org/?p=app.mailtrimmer;a=commitdiff_plain;h=803f891f9aa4104ddabbda68f7ba8db3206e8fda src/strip.vala --- diff --git a/src/strip.vala b/src/strip.vala index 4e65238..c3fd8fc 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -969,17 +969,21 @@ public class Strip : GLib.Object { continue; } - + var ds = next_file.get_display_name(); if (next_file.get_file_type() != FileType.DIRECTORY) { - if (next_file.get_display_name()[0] == ',') { + + + if (ds[0] == ',') { continue; } // other files to ignore? - - this.scan_file(basepath + subpath , next_file.get_display_name()); + if (Regex.match_simple (".tgz$", ds)) { + continue; + } + this.scan_file(basepath + subpath , ds); if(this.has_replaced) { - this.report_state("After scanning %s/%s".printf(basepath + subpath , next_file.get_display_name())); + this.report_state("After scanning %s/%s".printf(basepath + subpath , ds)); } continue; } @@ -990,7 +994,7 @@ public class Strip : GLib.Object { - var ds = next_file.get_display_name(); + // not really needed?? - we are storing attachments in a seperate location now... if (ds[0] == '.') { next_file = null;