1
0
mirror of https://github.com/topjohnwu/Magisk.git synced 2025-04-23 01:41:42 +00:00

Prevent dot in the first position

This commit is contained in:
vvb2060 2020-10-15 02:21:08 +08:00 committed by topjohnwu
parent 1ad7a6fe93
commit 43288be091

@ -48,7 +48,7 @@ object HideAPK {
var next: Char
var prev = 0.toChar()
for (i in 0 until len) {
next = if (prev == '.' || i == len - 1) {
next = if (prev == '.' || prev == 0.toChar() || i == len - 1) {
ALPHA[random.nextInt(ALPHA.length)]
} else {
ALPHADOTS[random.nextInt(ALPHADOTS.length)]