From e17ac10168a250ea7a3417473e3aea85b490be6c Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Mon, 22 Sep 2014 19:01:07 +0000 Subject: [PATCH] * check for updates only once per week --- source/net/filebot/Main.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/Main.java b/source/net/filebot/Main.java index 1f383a92..a81ae3ba 100644 --- a/source/net/filebot/Main.java +++ b/source/net/filebot/Main.java @@ -298,7 +298,7 @@ public class Main { * Show update notifications if updates are available */ private static void checkUpdate() throws Exception { - final Properties updateProperties = new CachedResource(getApplicationProperty("update.url"), Properties.class, CachedResource.ONE_DAY, 0, 0) { + final Properties updateProperties = new CachedResource(getApplicationProperty("update.url"), Properties.class, CachedResource.ONE_WEEK, 0, 0) { @Override public Properties process(ByteBuffer data) {