File tree 3 files changed +11
-5
lines changed
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.0.0-beta.3
2
+
3
+ ** Bug fix:**
4
+
5
+ * [ #150 ] ( https://github.com/rikulo/socket.io-client-dart/issues/150 ) Problem with setQuery in socket io version 3.0
6
+
1
7
## 2.0.0-beta.2
2
8
3
9
** Bug fix:**
Original file line number Diff line number Diff line change @@ -189,11 +189,11 @@ class Socket extends EventEmitter {
189
189
190
190
// write connect packet if necessary
191
191
// if ('/' != nsp) {
192
- if (query? .isNotEmpty == true ) {
193
- packet ({'type' : CONNECT , 'query' : query});
194
- } else {
192
+ // if (query?.isNotEmpty == true) {
193
+ // packet({'type': CONNECT, 'query': query});
194
+ // } else {
195
195
packet ({'type' : CONNECT });
196
- }
196
+ // }
197
197
// }
198
198
}
199
199
Original file line number Diff line number Diff line change 1
1
name : socket_io_client
2
2
description : Dartlang port of socket.io-client for web, flutter, dartvm to use
3
- version : 2.0.0-beta.2
3
+ version : 2.0.0-beta.3
4
4
homepage : https://www.zkoss.org
5
5
repository : https://github.com/rikulo/socket.io-client-dart
6
6
issue_tracker : https://github.com/rikulo/socket.io-client-dart/issues
You can’t perform that action at this time.
0 commit comments