Fix support for empty CVSS score tags.

This commit is contained in:
Šesták Vít
2018-02-14 15:42:03 +01:00
parent e766abf38c
commit 9836c5040f

View File

@@ -303,6 +303,7 @@ object OdcParser {
hopefullyTextChild match { hopefullyTextChild match {
case Text(data) => Some(data) case Text(data) => Some(data)
} }
case Seq() => None
} }
} }
} }