Skip to content
Open
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
2 changes: 1 addition & 1 deletion Sources/Classes/Parser/TCX/Extensions/Lap+TCX.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ extension Lap: Tcxable {

// When there are not route points, don't create the instance.
var routePoints: [Point]? = nil
routePoints <~ element["Track"]["Trackpoint"].all?.compactMap { Point(tcx: $0) }
routePoints <~ element["Track"].all?.flatMap { $0["Trackpoint"].all?.compactMap { Point(tcx: $0) } ?? [] }
if routePoints == nil {
return nil
}
Expand Down