aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo')
-rw-r--r--main/src/cgeo/geocaching/CacheListActivity.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/CacheListActivity.java b/main/src/cgeo/geocaching/CacheListActivity.java
index 0aec119..053798e 100644
--- a/main/src/cgeo/geocaching/CacheListActivity.java
+++ b/main/src/cgeo/geocaching/CacheListActivity.java
@@ -1027,7 +1027,11 @@ public class CacheListActivity extends AbstractListActivity implements FilteredA
}
}, true, StoredList.TEMPORARY_LIST_ID, newListName);
} else {
- refreshStored(caches, this.listId);
+ if (type != CacheListType.OFFLINE) {
+ refreshStored(caches, StoredList.STANDARD_LIST_ID);
+ } else {
+ refreshStored(caches, this.listId);
+ }
}
}