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

* 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

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