This commit is contained in:
zefie
2025-08-11 16:29:40 -04:00
parent c4b8fd03dc
commit 097f52d9dc
2 changed files with 5 additions and 5 deletions

View File

@@ -99,7 +99,7 @@ class WTVClientCapabilities {
//In case remaining hex length (or initial) is not multiple of 8
let blockSize = remainingSize < 8 ? remainingSize : 8;
binary += parseInt(hex.slice(p * 8, blockSize), 16).toString(2);
binary += parseInt(hex.slice(p * 8, p * 8 + blockSize), 16).toString(2);
remainingSize -= blockSize;
}