You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ Mapbox welcomes participation and contributions from everyone.
6
6
#### Features
7
7
#### Bug fixes and improvements
8
8
- Fixed crash in `PermissionsLauncherFragment` occurring on device rotation. [#6635](https://github.com/mapbox/mapbox-navigation-android/pull/6635)
9
+
- Fixed a rare `java.lang.IllegalArgumentException: The Path cannot loop back on itself.` exception when using `NavigationLocationProvider`. [#6641](https://github.com/mapbox/mapbox-navigation-android/pull/6641)
Copy file name to clipboardExpand all lines: libnavui-maps/src/main/java/com/mapbox/navigation/ui/maps/internal/location/ConstantVelocityInterpolator.kt
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -45,15 +45,18 @@ class ConstantVelocityInterpolator(
Copy file name to clipboardExpand all lines: libnavui-maps/src/test/java/com/mapbox/navigation/ui/maps/internal/location/ConstantVelocityInterpolatorTest.kt
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,29 @@ class ConstantVelocityInterpolatorTest {
72
72
)
73
73
}
74
74
75
+
@Test
76
+
fun`should not crash because of error accumulation`() { // caused by NAVAND-925
77
+
val startPoint =Point.fromLngLat(48.36654772857354, 11.13222120183356)
0 commit comments