feat: alt update

This commit is contained in:
rebel onion 2025-01-05 20:23:50 -06:00
parent 495322547e
commit 7fc69b4edd
2 changed files with 98 additions and 30 deletions

View file

@ -157,6 +157,8 @@ import java.util.TimeZone
import java.util.Timer
import java.util.TimerTask
import kotlin.collections.set
import kotlin.io.encoding.Base64
import kotlin.io.encoding.ExperimentalEncodingApi
import kotlin.math.log2
import kotlin.math.max
import kotlin.math.min
@ -1524,3 +1526,13 @@ fun getLanguageName(language: String): String? {
}
return null
}
@OptIn(ExperimentalEncodingApi::class)
fun String.decodeBase64ToString(): String {
return try {
String(Base64.decode(this), Charsets.UTF_8)
} catch (e: Exception) {
Logger.log(e)
""
}
}