1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-04-25 04:50:26 +08:00

Fix error decoder

This commit is contained in:
赵怡然 2023-07-24 22:15:59 +08:00 committed by GitHub
parent ee30203e3a
commit 13fd579ee3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,7 +122,7 @@ internal suspend fun QQAndroidBot.requestQimei(logger: MiraiLogger) {
oaid = "",
osVersion = buildString {
append("Android ")
append(deviceInfo.version.release.toString())
append(deviceInfo.version.release.decodeToString())
append(", level ")
append(deviceInfo.version.sdk.toString())
},
@ -296,4 +296,4 @@ private class PostData(
val nonce: String,
val sign: String,
val extra: String
)
)