Skip to content

Commit 11ba646

Browse files
committed
Linting
1 parent e4e6a2d commit 11ba646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transforms/framer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Framer {
4141
static decode (client, buf) {
4242
// Read header
4343
if (client.batchHeader && buf[0] !== client.batchHeader) throw Error(`bad batch packet header, received: ${buf[0]}, expected: ${client.batchHeader}`)
44-
const buffer = buf.slice(client.batchHeader ? 1 : 0)
44+
const buffer = buf.slice(client.batchHeader ? 1 : 0)
4545
// Decompress
4646
let decompressed
4747
if (client.features.compressorInHeader && client.compressionReady) {

0 commit comments

Comments
 (0)