Skip to content

Commit

Permalink
Sort modules ignore case
Browse files Browse the repository at this point in the history
  • Loading branch information
topjohnwu committed Nov 4, 2019
1 parent b1d25e0 commit a6e62e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Module(path: String) : BaseModule() {
val module = Module(Const.MAGISK_PATH + "/" + file.name)
moduleList.add(module)
}
return moduleList.sortedBy { it.name }
return moduleList.sortedBy { it.name.toLowerCase() }
}
}
}

0 comments on commit a6e62e0

Please sign in to comment.