mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
fix: codefactor recommendation
This commit is contained in:
parent
3f42214ca9
commit
133923b905
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ class JsHunter(private val hunterJS: String) {
|
|||
var k = ""
|
||||
while (j > 0) {
|
||||
k = i[(j % f).toInt()] + k
|
||||
j = (j - (j % f)) / f
|
||||
j = (j - j % f) / f
|
||||
}
|
||||
return k.toIntOrNull() ?: 0
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue