Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Trying to update non-existent polyline fix #9544

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public List<Polyline> addBy(@NonNull List<PolylineOptions> polylineOptionsList,
public void update(Polyline polyline) {
if (!isAddedToMap(polyline)) {
Timber.w("Attempting to update non-added Polyline with value %s", polyline);
return;
}

nativeMapView.updatePolyline(polyline);
Expand Down