Skip to content

Commit

Permalink
Minor bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
samschreiber committed Oct 29, 2013
1 parent f11e24f commit d869413
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/ggp/base/util/game/CloudGameRepository.java
Original file line number Diff line number Diff line change
Expand Up @@ -190,13 +190,14 @@ public void run() {
// Skip updating the game cache entry if the version is the same
// and the cache entry was written less than a week ago.
if (myGameVersion.getRepositoryURL().equals(remoteVersionedGameURL) &&
getCacheEntryAge(theKey) < 604800000) {
getCacheEntryAge(theKey) < 604800000) {
unchangedKeys.add(theKey);
}
} catch (Exception e) {
continue;
}
}
theGameKeys.removeAll(unchangedKeys);
}

// Start threads to update every entry in the cache (or at least verify
Expand Down

0 comments on commit d869413

Please sign in to comment.