fix: declare radix in parseInt

Co-authored-by: Jixun Wu <5713045+jixunmoe@users.noreply.github.com>
(cherry picked from commit eee7d7aedc37797820184c12f6954df23e4b98b8)
This commit is contained in:
MengYX 2021-12-25 20:20:15 +08:00 committed by MengYX
parent fc4a0e002f
commit af10576b88
No known key found for this signature in database
GPG Key ID: E63F9C7303E8F604
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ export class QmcDecoder {
if (keyEnd < 0) {
throw new Error('invalid key: search song id failed');
}
this._songID = parseInt(textEnc.decode(idBuf.subarray(0, idEnd)));
this._songID = parseInt(textEnc.decode(idBuf.subarray(0, idEnd)), 10);
} else {
const sizeView = new DataView(last4Byte.buffer, last4Byte.byteOffset);
const keySize = sizeView.getUint32(0, true);