-
@bmalkow In this commit, I've annotated a place that should be reviewed,
RequestsManager.kt
andtimeoutAll()
method. Following lineif (!it.value.isCompleted) {
causes a crash on iOS when it is run due to XML parsing error. I'm not sure if that was expected or if there is a race condition. Do you think this variable can be modified from more that one thread?
Type |
Bug
|
Priority |
Normal
|
Assignee | |
Version |
none
|
Sprints |
n/a
|
Customer |
n/a
|
Issue Votes (0)
When XML parser encounters prefixed XML element without defined namespace (ie.
<xx:test />
) it throwsMalformed XML
error instead of processing valid XML element.