Skip to content

Commit

Permalink
Fix #67 (wptType's missing linkType)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentneo committed Dec 16, 2019
1 parent 9841f7b commit b777c75
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Classes/GPXWaypoint.swift
Expand Up @@ -241,6 +241,7 @@ public class GPXWaypoint: GPXElement, Codable {
case "cmt": self.comment = child.text
case "desc": self.desc = child.text
case "src": self.source = child.text
case "link": self.link = GPXLink(raw: child)
case "sym": self.symbol = child.text
case "type": self.type = child.text
case "fix": self.fix = GPXFix(rawValue: child.text ?? "none")
Expand Down

0 comments on commit b777c75

Please sign in to comment.