Skip to content

Commit

Permalink
Fixed parsing of prop files with whitespaces (#1039)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalrentka authored Dec 4, 2024
1 parent e046b7a commit 77c5525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Zotero/Controllers/WebDAV/WebDavPropParserDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ final class WebDavPropParserDelegate: NSObject, XMLParserDelegate {
}

func parser(_ parser: XMLParser, foundCharacters string: String) {
self.currentValue += string
self.currentValue += string.replacingOccurrences(of: "\\s", with: "", options: .regularExpression)
}
}

0 comments on commit 77c5525

Please sign in to comment.