diff options
| -rw-r--r-- | main/src/cgeo/geocaching/VisitCacheActivity.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/VisitCacheActivity.java b/main/src/cgeo/geocaching/VisitCacheActivity.java index c2ee127..3b8b3e1 100644 --- a/main/src/cgeo/geocaching/VisitCacheActivity.java +++ b/main/src/cgeo/geocaching/VisitCacheActivity.java @@ -323,6 +323,9 @@ public class VisitCacheActivity extends cgLogForm { return true; } else if (id >= 10 && id <= 19) { rating = (id - 9) / 2.0; + if (rating < 1) { + rating = 0; + } updatePostButtonText(); return true; } |
