Skip to content

Commit

Permalink
Fixed bug with incorrect activities grouping
Browse files Browse the repository at this point in the history
  • Loading branch information
bionicl committed Jul 6, 2018
1 parent 8a13d0c commit b119ca4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Arc-app-export-converter/XmlReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public Activity(ActivityType activity, Coordinates[] waypoints) {
}

public void MargeWithNew(Coordinates[] waypoints) {
List<Coordinates> tempMerge = waypoints.ToList();
List<Coordinates> tempMerge = this.waypoints.ToList();
foreach (var item in waypoints) {
tempMerge.Add(item);
}
Expand Down Expand Up @@ -221,7 +221,7 @@ public void LoadFile(string path = "file.gpx") {
SetStartEnd();
SetSummary();

//Display();
Display();
}
void GetPlace(string line, StreamReader sr) {
XmlTimeline.Coordinates location = HelpMethods.GetLatLon(line);
Expand Down

0 comments on commit b119ca4

Please sign in to comment.