Skip to content

Commit

Permalink
Merge branch 'release' (with conflict resolution)
Browse files Browse the repository at this point in the history
  • Loading branch information
moving-bits committed Nov 3, 2024
2 parents 7eb7673 + 486db7f commit 95f424d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,6 @@ private void addAllWaypointNeededVars(final Set<String> neededVars) {

private boolean recalculateWaypoints() {
final Geocache cache = DataStore.loadCache(this.geocode, LoadFlags.LOAD_CACHE_OR_DB);
return cache.recalculateWaypoints(this);
return cache != null && cache.recalculateWaypoints(this);
}
}
2 changes: 2 additions & 0 deletions main/src/main/res/raw/changelog_bugfix.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
##
- Fix: Some issues with new event time detection
- Fix: Crash when editing variable field
- Fix: Crash on importing GPX file (workaround)

##
- Fix: Missing event times on cache download (website change)
Expand Down

0 comments on commit 95f424d

Please sign in to comment.