-
Notifications
You must be signed in to change notification settings - Fork 113
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
CDATA Decoding not working #168
Labels
bug
Something isn't working
Comments
Merged
Thanks for reporting it @Kirow, the fix for it will be included in the next release. |
Hi @MaxDesiatov, For when is the next release scheduled? Waiting in anticipation for this. Thanks for a great XML coder! |
Hey @kasperkronborg, this is now published in the 0.11 release and is available with SwiftPM, CocoPods and Carthage. Thanks for your feedback, I appreciate your support 🙂 |
arjungupta0107
pushed a commit
to salido/XMLCoder
that referenced
this issue
Jun 26, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
result.data
decoded into""
. Actually there is an error inXMLDecoder.swift:212
-Expected String but found null instead.
If we go deeper -
KeyedBox.swift:27 return elements[""].first as? SimpleBox
. It will returnnil
because key is"#CDATA"
in this case.I've made simple code change that fixed problem in this case, but have no idea what it can break later.
.patch
The text was updated successfully, but these errors were encountered: