Skip to content

Commit b6ad7f8

Browse files
authored
Merge pull request #260 from AppDevNext/FixXML
Fix xml parser
2 parents 6475e58 + 429193c commit b6ad7f8

File tree

1 file changed

+1
-0
lines changed
  • ChangeLogLib/src/main/java/info/hannes/changelog

1 file changed

+1
-0
lines changed

ChangeLogLib/src/main/java/info/hannes/changelog/ChangeLog.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,7 @@ open class ChangeLog @JvmOverloads constructor(
417417
while (eventType != XmlPullParser.END_TAG || xml.name == ChangeTag.NAME) {
418418
if (eventType == XmlPullParser.START_TAG && xml.name == ChangeTag.NAME) {
419419
@Suppress("UNUSED_VALUE")
420+
eventType = xml.next()
420421

421422
changes.add(xml.text)
422423
}

0 commit comments

Comments
 (0)