You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Skip snyc markers if more data follows and not raw modewhile(strm.avail_in>0&&status===Z_STREAM_END&&strm.state.wrap>0&&data[strm.next_in]!==0){zlib_inflate.inflateReset(strm);status=zlib_inflate.inflate(strm,_flush_mode);}
this does not exist in Pako v1.* and causes the following error in Inflator
Err: -3, msg: 'incorrect header check'
The text was updated successfully, but these errors were encountered:
Apparently Pako v2.* has some breaking changes that prevent us from updating it without deep investigation.
Problematic code in this library:
git-essentials/src/utils/git-list-pack.ts
Lines 48 to 51 in d793ac5
Problematic code on pako library:
https://github.com/nodeca/pako/blob/174a1d12b68dfbd531a572eaaea0937491b36f55/lib/inflate.js#L237-L245
this does not exist in Pako v1.* and causes the following error in Inflator
Err: -3, msg: 'incorrect header check'
The text was updated successfully, but these errors were encountered: