-
Notifications
You must be signed in to change notification settings - Fork 10.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling socket.disconnect() when using xhr-polling caused an infinite loop on IE8 #534
Labels
bug
Something isn't working
Comments
Looks like a good fix to me. What do you think @guille |
Great, we actually added the this.close check later. So it would be. if (this.open && this.close) this.close(); |
Aha, socket.io-client, in socket.io.js:1330 - got it! |
+1 thanks @taromorimoto |
Can this somehow be changed in socket.io so I dont have to fiddle around with my npm libraries?? |
If this is still a problem, someone should submit a PR. |
darrachequesne
pushed a commit
that referenced
this issue
Jul 4, 2024
darrachequesne
added a commit
that referenced
this issue
Jul 8, 2024
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Calling socket.disconnect() when using xhr-polling caused an infinite loop on IE8. Changing one line helped to solve the issue. Is this a correct fix for this or are we breaking something?
In this part of the code.
Changed this.close to this.open.
The text was updated successfully, but these errors were encountered: