From: David ‘Bombe’ Roden Date: Sat, 29 Sep 2007 21:29:34 +0000 (+0000) Subject: any kind of error will abort the insert X-Git-Tag: 0.4.9~1 X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;ds=sidebyside;h=9d9bcc367fd6e0f22ec28764fe119ecca323ad22;p=jSite.git any kind of error will abort the insert --- diff --git a/src/de/todesbaum/jsite/application/ProjectInserter.java b/src/de/todesbaum/jsite/application/ProjectInserter.java index 1b0021a..7b4d619 100644 --- a/src/de/todesbaum/jsite/application/ProjectInserter.java +++ b/src/de/todesbaum/jsite/application/ProjectInserter.java @@ -301,7 +301,7 @@ public class ProjectInserter implements FileScannerListener, Runnable { fireProjectInsertProgress(succeeded, failed, fatal, total, finalized); } success = "PutSuccessful".equals(messageName); - finished = success || "PutFailed".equals(messageName); + finished = success || "PutFailed".equals(messageName) || messageName.endsWith("Error"); } }