fix: remove debug log

This commit is contained in:
ikechan8370 2024-07-07 15:26:30 +08:00 committed by GitHub
parent 4016c05882
commit 02f83a3c48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -355,7 +355,6 @@ internal object NtV2RichMediaSvc: QQInterfaces() {
if (fromServiceMsg == null || fromServiceMsg.wupBuffer == null) { if (fromServiceMsg == null || fromServiceMsg.wupBuffer == null) {
return Result.failure(Exception("unable to get multimedia pic info: ${fromServiceMsg?.wupBuffer}")) return Result.failure(Exception("unable to get multimedia pic info: ${fromServiceMsg?.wupBuffer}"))
} }
LogCenter.log(fromServiceMsg.wupBuffer.toHexString())
fromServiceMsg.wupBuffer.decodeProtobuf<TrpcOidb>().buffer.decodeProtobuf<NtV2RichMediaRsp>().download?.rkeyParam?.let { fromServiceMsg.wupBuffer.decodeProtobuf<TrpcOidb>().buffer.decodeProtobuf<NtV2RichMediaRsp>().download?.rkeyParam?.let {
return Result.success(it) return Result.success(it)
} }
@ -505,4 +504,4 @@ internal object NtV2RichMediaSvc: QQInterfaces() {
) )
} }
} }
} }