* movie index is >1MB so only update that once a month

This commit is contained in:
Reinhard Pointner 2014-09-15 17:13:49 +00:00
parent 5624afb010
commit a8568f7bcd
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ public class ReleaseInfo {
protected static class MovieResource extends CachedResource<Movie[]> {
public MovieResource(String resource) {
super(resource, Movie[].class, ONE_WEEK); // check for updates every month
super(resource, Movie[].class, ONE_MONTH); // check for updates every month
}
@Override