Commit a6e62e07 authored by topjohnwu's avatar topjohnwu

Sort modules ignore case

Close #2024
parent b1d25e05
...@@ -65,7 +65,7 @@ class Module(path: String) : BaseModule() { ...@@ -65,7 +65,7 @@ class Module(path: String) : BaseModule() {
val module = Module(Const.MAGISK_PATH + "/" + file.name) val module = Module(Const.MAGISK_PATH + "/" + file.name)
moduleList.add(module) moduleList.add(module)
} }
return moduleList.sortedBy { it.name } return moduleList.sortedBy { it.name.toLowerCase() }
} }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment