Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jumperchen committed Oct 25, 2022
1 parent 6f18885 commit 0443586
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.0.1

**Bug fix:**
* [socket.io-client-dart#294](https://github.com/rikulo/socket.io-client-dart/issues/294) _reconstructPacket

## 2.0.0

**Features:**
Expand Down
2 changes: 1 addition & 1 deletion lib/src/parser/binary.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class Binary {
return packet;
}

static Object? _reconstructPacket(Object data, List<List<int>> buffers) {
static Object? _reconstructPacket(Object? data, List<List<int>> buffers) {
if (data is List) {
final _data = data;
int i = 0;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: socket_io_common
description: Socket.io common parser library.
version: 2.0.0
version: 2.0.1
homepage: https://www.zkoss.org
repository: https://github.com/rikulo/socket_io_common
issue_tracker: https://github.com/rikulo/socket_io_common/issues
Expand Down

0 comments on commit 0443586

Please sign in to comment.