Skip to content

Commit 7c6e697

Browse files
committed
Was fixed bug with not correct work to stream data in mode "time" and change course
1 parent 98c7390 commit 7c6e697

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/laeflet-react-track-player/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ class LeafletReactTrackPlayer extends MapLayer {
210210
: L.multiColorsPolyline(
211211
toProps.track.filter(
212212
item =>
213-
Number(item.t) >
213+
Number(item.t) >=
214214
Number(fromProps.track[fromProps.track.length - 1].t)
215215
),
216216
paramsForMultiPolyline(this.props)

0 commit comments

Comments
 (0)