Merge pull request #5 from kartoFlane/patch-1

Fix appUpdateInterval not being used
This commit is contained in:
Vhati 2014-09-30 18:19:29 -04:00
commit b01505358c

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 {