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

Check for updates every 90 days

This commit is contained in:
Reinhard Pointner 2019-05-04 19:26:43 +07:00
parent 546149a88d
commit 1c9440ed3c

View File

@ -46,7 +46,7 @@ void build(ids, section, db, query) {
return
}
if (original.length() == 0 && original.exists() && System.currentTimeMillis() - original.lastModified() < 90 * 24 * 60 * 60 * 1000) {
if (original.length() == 0 && original.exists() && System.currentTimeMillis() - original.lastModified() > 90 * 24 * 60 * 60 * 1000) {
log.finest "[SKIP] $id"
return
}