fix: logs compress

This commit is contained in:
engigu
2026-03-31 20:39:26 +08:00
parent b6aad697be
commit f77c6b5233
3 changed files with 3 additions and 11 deletions
+1 -2
View File
@@ -13,7 +13,6 @@ export function decompressFromBase64(compressed: string): string {
const decompressed = pako.inflate(bytes, { to: 'string' })
return decompressed
} catch (e) {
console.error('Decompress error:', e)
return '[解压失败]'
return compressed
}
}