Allow category names with different casing (fixes #3465)

This commit is contained in:
arkon
2020-07-14 09:04:15 -04:00
parent a928d9fa0b
commit 4bc2288806
3 changed files with 3 additions and 6 deletions
@@ -12,9 +12,6 @@ interface Category : Serializable {
var flags: Int
val nameLower: String
get() = name.toLowerCase()
companion object {
fun create(name: String): Category = CategoryImpl().apply {