Skip to content

Commit b1630ba

Browse files
chore(release): 3.5.0
Diff: 3.4.4...3.5.0
1 parent 8750356 commit b1630ba

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# [3.5.0](https://github.com/socketio/engine.io-client/compare/3.4.4...3.5.0) (2020-12-30)
2+
3+
4+
### Bug Fixes
5+
6+
* check the type of the initial packet ([8750356](https://github.com/socketio/engine.io-client/commit/8750356dba5409ba0e1d3a27da6d214118702b3e))
7+
8+
9+
110
## [3.4.4](https://github.com/socketio/engine.io-client/compare/3.4.3...3.4.4) (2020-09-30)
211

312

engine.io.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1521,7 +1521,7 @@ return /******/ (function(modules) { // webpackBootstrap
15211521
debug('polling got data %s', data);
15221522
var callback = function (packet, index, total) {
15231523
// if its the first message we consider the transport open
1524-
if ('opening' === self.readyState) {
1524+
if ('opening' === self.readyState && packet.type === 'open') {
15251525
self.onOpen();
15261526
}
15271527

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "engine.io-client",
33
"description": "Client for the realtime Engine",
44
"license": "MIT",
5-
"version": "3.4.4",
5+
"version": "3.5.0",
66
"main": "lib/index.js",
77
"homepage": "https://github.com/socketio/engine.io-client",
88
"contributors": [

0 commit comments

Comments
 (0)