Skip to content

Commit 02c6a8b

Browse files
committed
v1.1
1 parent 1400716 commit 02c6a8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wsdatautil/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from . import _wsframecoder
2222

2323

24-
__version__ = "1.0"
24+
__version__ = "1.1"
2525

2626

2727
def _make_accept_key(b64key: bytes):
@@ -382,7 +382,7 @@ def read_header_continuation(self, continuation_data: bytes) -> int:
382382
mask,
383383
amount
384384
) = _wsframecoder.read_header_continuation(continuation_data, self.amount_spec, self.masked)
385-
self.mask = mask
385+
self.mask = mask if self.masked else None
386386
self.amount = amount
387387
return self.amount
388388

0 commit comments

Comments
 (0)