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
1 changed files with 1 additions and 1 deletions

View File

@ -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)]