aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/export
diff options
context:
space:
mode:
authorMarco Jacob <mjacob@union06.de>2013-07-26 09:07:15 +0200
committerMarco Jacob <mjacob@union06.de>2013-07-26 09:07:15 +0200
commit3b54980bb46ecd018f22e64d644b6efcf11995ba (patch)
treed69357d9d582079da4fe880357f4fbd0f28f6675 /main/src/cgeo/geocaching/export
parent5ac923823e84f7118a0e1ea6bbfca4f53e13260a (diff)
downloadcgeo-3b54980bb46ecd018f22e64d644b6efcf11995ba.zip
cgeo-3b54980bb46ecd018f22e64d644b6efcf11995ba.tar.gz
cgeo-3b54980bb46ecd018f22e64d644b6efcf11995ba.tar.bz2
fix #3050 - progress for export field notes increases for every cache
Diffstat (limited to 'main/src/cgeo/geocaching/export')
-rw-r--r--main/src/cgeo/geocaching/export/FieldnoteExport.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/export/FieldnoteExport.java b/main/src/cgeo/geocaching/export/FieldnoteExport.java
index 9d0310c..38cd43e 100644
--- a/main/src/cgeo/geocaching/export/FieldnoteExport.java
+++ b/main/src/cgeo/geocaching/export/FieldnoteExport.java
@@ -137,8 +137,8 @@ class FieldnoteExport extends AbstractExport {
if (!onlyNew || onlyNew && log.date > Settings.getFieldnoteExportDate()) {
appendFieldNote(fieldNoteBuffer, cache, log);
}
- publishProgress(++i);
}
+ publishProgress(++i);
}
} catch (final Exception e) {
Log.e("FieldnoteExport.ExportTask generation", e);