This commit is contained in:
Zack Zhou 2024-05-03 11:00:27 +01:00 committed by GitHub
commit 83c4242b95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ async function bufferToStr(data) {
try {
str = cptable.utils.decode(data.encoding, new Uint8Array(data.buffer));
} catch (err) {
str = err;
str = err.message;
}
}