Skip to content

Commit

Permalink
Fix #28
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentneo committed Feb 27, 2019
1 parent c97ae90 commit e8a7232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/GPXLink.swift
Expand Up @@ -68,7 +68,7 @@ open class GPXLink: GPXElement {
if let href = href {
attribute.appendFormat(" href=\"%@\"", href)
}
gpx.appendFormat("%@<%@%@>\r\n", indent(forIndentationLevel: indentationLevel), self.tagName())
gpx.appendFormat("%@<%@%@>\r\n", indent(forIndentationLevel: indentationLevel), self.tagName(), attribute)
}

override func addChildTag(toGPX gpx: NSMutableString, indentationLevel: Int) {
Expand Down

0 comments on commit e8a7232

Please sign in to comment.