aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/CachePopup.java
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2014-05-17 08:51:24 +0200
committerBananeweizen <bananeweizen@gmx.de>2014-05-17 08:51:24 +0200
commit496878826d638367c129b02e66f992202e0d36c9 (patch)
tree12b5932c47a90baa20c7f66770a11affc8cad4ba /main/src/cgeo/geocaching/CachePopup.java
parent2b2753afb1a0bf528315ea2b3efa9dc61a5e6bdf (diff)
downloadcgeo-496878826d638367c129b02e66f992202e0d36c9.zip
cgeo-496878826d638367c129b02e66f992202e0d36c9.tar.gz
cgeo-496878826d638367c129b02e66f992202e0d36c9.tar.bz2
fix #3255: don't ask for list when storing from history
Diffstat (limited to 'main/src/cgeo/geocaching/CachePopup.java')
-rw-r--r--main/src/cgeo/geocaching/CachePopup.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/CachePopup.java b/main/src/cgeo/geocaching/CachePopup.java
index f91d275..b72b67c 100644
--- a/main/src/cgeo/geocaching/CachePopup.java
+++ b/main/src/cgeo/geocaching/CachePopup.java
@@ -11,6 +11,7 @@ import cgeo.geocaching.utils.CancellableHandler;
import cgeo.geocaching.utils.Log;
import org.apache.commons.lang3.StringUtils;
+
import rx.functions.Action0;
import rx.functions.Action1;
import rx.schedulers.Schedulers;
@@ -151,7 +152,7 @@ public class CachePopup extends AbstractPopupActivity {
final StoreCacheHandler refreshCacheHandler = new StoreCacheHandler(R.string.cache_dialog_offline_save_message);
progress.show(CachePopup.this, res.getString(R.string.cache_dialog_refresh_title), res.getString(R.string.cache_dialog_refresh_message), true, refreshCacheHandler.cancelMessage());
- cache.refresh(cache.getListId(), refreshCacheHandler, Schedulers.io());
+ cache.refresh(refreshCacheHandler, Schedulers.io());
}
}