Fix appUpdateInterval not being used

This commit is contained in:
kartoFlane 2014-09-30 18:55:43 +02:00
parent e9a61bac3e
commit f0749f3926

View file

@ -143,7 +143,7 @@ public class ManagerInitThread extends Thread {
if ( appUpdateInterval > 0 ) {
// Check if the app update info is stale.
if ( isFileStale( appUpdateFile, catalogUpdateInterval ) ) {
if ( isFileStale( appUpdateFile, appUpdateInterval ) ) {
log.debug( String.format( "App update info is older than %d days.", appUpdateInterval ) );
needAppUpdate = true;
} else {