diff options
| -rw-r--r-- | main/src/cgeo/geocaching/cgData.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/cgData.java b/main/src/cgeo/geocaching/cgData.java index a38dc12..83b45ab 100644 --- a/main/src/cgeo/geocaching/cgData.java +++ b/main/src/cgeo/geocaching/cgData.java @@ -2735,11 +2735,11 @@ public class cgData { init(); SQLiteStatement move = PreparedStatements.getMoveToList(); - move.bindLong(1, listId); database.beginTransaction(); try { for (cgCache cache : caches) { + move.bindLong(1, listId); move.bindString(2, cache.getGeocode()); move.execute(); cache.setListId(listId); |
