NewToki: fix domain number (#15296)

This commit is contained in:
stevenyomi 2023-02-10 23:00:29 +08:00 committed by GitHub
parent 34582e30e3
commit 25d2372531
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'NewToki / ManaToki'
pkgNameSuffix = 'ko.newtoki'
extClass = '.TokiFactory'
extVersionCode = 27
extVersionCode = 28
isNsfw = true
}

View File

@ -20,7 +20,7 @@ import java.io.IOException
* the number is decremented by 1 initially,
* and increments every 8 days which is a bit slower than the average.
*/
val fallbackDomainNumber get() = (217 - 1) + ((System.currentTimeMillis() - 1644282000_000) / 691200_000).toInt()
val fallbackDomainNumber get() = (217 - 1) + ((System.currentTimeMillis() - 1675818000_000) / 691200_000).toInt()
var domainNumber = ""
get() {