diff --git a/source/net/filebot/ui/SupportDialog.java b/source/net/filebot/ui/SupportDialog.java index b80630d1..3f72ee10 100644 --- a/source/net/filebot/ui/SupportDialog.java +++ b/source/net/filebot/ui/SupportDialog.java @@ -25,7 +25,7 @@ public enum SupportDialog { @Override String getMessage(int renameCount) { - return String.format("

Thank you for using FileBot!


It has taken thousands of hours to develop this application. If it works well for you,
please purchase a license. It'll help make FileBot even better!

You've renamed %,d files.


", renameCount); + return String.format("

Thank you for using FileBot!


It has taken thousands of hours to develop this application. If it works well for you,
please purchase a license. It'll help make FileBot even better!

You've renamed %,d files.


", renameCount > 0 ? renameCount : 0); } @Override @@ -49,8 +49,7 @@ public enum SupportDialog { LICENSE.check(); return false; } catch (Throwable e) { - log.log(Level.WARNING, e::toString); - return false; + return true; } }