src/strip.vala
authorAlan Knowles <alan@roojs.com>
Thu, 3 May 2018 10:47:18 +0000 (18:47 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 3 May 2018 10:47:18 +0000 (18:47 +0800)
src/strip.vala

index d6d8cc2..11b8a16 100644 (file)
@@ -313,10 +313,13 @@ public class Strip : GLib.Object {
     {
        // only called when we have an sid...
        var sid = attachment.get_header("X-strip-id");
-        if (sid != null && sid.length > 0) {
-               GLib.debug("Skip attachment replace - it's already been done");
+        if (sid == null || sid.length < 1) {
+               GLib.debug("Strange - update attachment db called ?");
                return;
        }
+       
+       
+       
     
     }