Skip to content

Commit

Permalink
chore(release): 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Dec 30, 2020
1 parent 8750356 commit b1630ba
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# [3.5.0](https://github.com/socketio/engine.io-client/compare/3.4.4...3.5.0) (2020-12-30)


### Bug Fixes

* check the type of the initial packet ([8750356](https://github.com/socketio/engine.io-client/commit/8750356dba5409ba0e1d3a27da6d214118702b3e))



## [3.4.4](https://github.com/socketio/engine.io-client/compare/3.4.3...3.4.4) (2020-09-30)


Expand Down
2 changes: 1 addition & 1 deletion engine.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,7 @@ return /******/ (function(modules) { // webpackBootstrap
debug('polling got data %s', data);
var callback = function (packet, index, total) {
// if its the first message we consider the transport open
if ('opening' === self.readyState) {
if ('opening' === self.readyState && packet.type === 'open') {
self.onOpen();
}

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "engine.io-client",
"description": "Client for the realtime Engine",
"license": "MIT",
"version": "3.4.4",
"version": "3.5.0",
"main": "lib/index.js",
"homepage": "https://github.com/socketio/engine.io-client",
"contributors": [
Expand Down

0 comments on commit b1630ba

Please sign in to comment.