diff --git a/app/src/main/kotlin/org/bspeice/minimalbible/service/format/osisparser/OsisParser.kt b/app/src/main/kotlin/org/bspeice/minimalbible/service/format/osisparser/OsisParser.kt index 8305961..de78b7e 100644 --- a/app/src/main/kotlin/org/bspeice/minimalbible/service/format/osisparser/OsisParser.kt +++ b/app/src/main/kotlin/org/bspeice/minimalbible/service/format/osisparser/OsisParser.kt @@ -32,6 +32,7 @@ class OsisParser() : DefaultHandler() { qName: String, attributes: Attributes) { when (localName) { OSISUtil.OSIS_ELEMENT_VERSE -> doWrite.push(true) + "divineName" -> doWrite.push(true) else -> doWrite.push(false) } }