diff --git a/build.xml b/build.xml
index 2388840b..c58bd354 100644
--- a/build.xml
+++ b/build.xml
@@ -356,8 +356,12 @@
+
+
-
+
+
+
diff --git a/source/net/filebot/Main.java b/source/net/filebot/Main.java
index ebff7980..cc856766 100644
--- a/source/net/filebot/Main.java
+++ b/source/net/filebot/Main.java
@@ -139,7 +139,7 @@ public class Main {
if (!"skip".equals(System.getProperty("application.update"))) {
try {
checkUpdate();
- } catch (Exception e) {
+ } catch (Throwable e) {
debug.log(Level.WARNING, "Failed to check for updates", e);
}
}
@@ -148,7 +148,7 @@ public class Main {
if (!"skip".equals(System.getProperty("application.help"))) {
try {
checkGettingStarted();
- } catch (Exception e) {
+ } catch (Throwable e) {
debug.log(Level.WARNING, "Failed to show Getting Started help", e);
}
}