1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* check for updates only once per week

This commit is contained in:
Reinhard Pointner 2014-09-22 19:01:07 +00:00
parent 3dd87924f1
commit e17ac10168

View File

@ -298,7 +298,7 @@ public class Main {
* Show update notifications if updates are available * Show update notifications if updates are available
*/ */
private static void checkUpdate() throws Exception { private static void checkUpdate() throws Exception {
final Properties updateProperties = new CachedResource<Properties>(getApplicationProperty("update.url"), Properties.class, CachedResource.ONE_DAY, 0, 0) { final Properties updateProperties = new CachedResource<Properties>(getApplicationProperty("update.url"), Properties.class, CachedResource.ONE_WEEK, 0, 0) {
@Override @Override
public Properties process(ByteBuffer data) { public Properties process(ByteBuffer data) {