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

* check for index updates more often

This commit is contained in:
Reinhard Pointner 2014-07-24 13:48:27 +00:00
parent ebf876022a
commit 03f55b8fbe

View File

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