We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2933494 commit a753b25Copy full SHA for a753b25
src/cmap/wire_protocol/compression.ts
@@ -85,7 +85,7 @@ export function decompress(
85
const snappyResult = Snappy.uncompress(compressedData, { asBuffer: true }, callback);
86
87
if (isPromiseLike(snappyResult)) {
88
- // Using snappy 6.x
+ // Using snappy 7.x
89
snappyResult.then(buffer => callback(undefined, buffer)).catch(error => callback(error));
90
}
91
break;
0 commit comments