diff options
| -rw-r--r-- | src/cgeo/geocaching/cgCache.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cgeo/geocaching/cgCache.java b/src/cgeo/geocaching/cgCache.java index f4e7c3b..5a48875 100644 --- a/src/cgeo/geocaching/cgCache.java +++ b/src/cgeo/geocaching/cgCache.java @@ -90,6 +90,10 @@ public class cgCache implements ICache { * @param other the other version, or null if non-existent */ public void gatherMissingFrom(final cgCache other) { + if (other == null) { + return; + } + updated = System.currentTimeMillis(); if (detailed == false && other.detailed) { detailed = true; |
