Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix array of same keyed items #15

Merged
merged 1 commit into from
Sep 29, 2018
Merged
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
10 changes: 9 additions & 1 deletion Sources/XMLParsing/XMLStackParser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,15 @@ internal class _XMLElement {
for childElement in children {
for child in childElement.value {
if let content = child.value {
node[childElement.key] = content
if let oldContent = node[childElement.key] as? Array<Any> {
node[childElement.key] = oldContent + [content]

} else if let oldContent = node[childElement.key] {
node[childElement.key] = [oldContent, content]

} else {
node[childElement.key] = content
}
} else if !child.children.isEmpty || !child.attributes.isEmpty {
let newValue = child.flatten()

Expand Down