* 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
1 changed files with 1 additions and 1 deletions

View File

@ -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<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
public Properties process(ByteBuffer data) {