*Update chunk length check to use the buffer and check byteOffset
This commit is contained in:
parent
abc7a31e80
commit
40ceda37ef
|
@ -222,7 +222,7 @@ export default class IpfsProvider extends BaseProvider {
|
||||||
let cacheBuffer: Uint8Array[] | Uint8Array = [];
|
let cacheBuffer: Uint8Array[] | Uint8Array = [];
|
||||||
|
|
||||||
const receiveUpdate = (chunk: Uint8Array) => {
|
const receiveUpdate = (chunk: Uint8Array) => {
|
||||||
if (!chunk.length && !chunk.byteLength) {
|
if (!chunk.buffer.byteLength && chunk.byteOffset === 0) {
|
||||||
return filterPromise;
|
return filterPromise;
|
||||||
}
|
}
|
||||||
if (
|
if (
|
||||||
|
|
Reference in New Issue