You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you disconnect and reconnect, you end up receiving each message twice.
This is due to the fact that Bellhop.disconnect() doesn't release the event listener. Indeed, addEventListener (see this line) and removeEventListener (see this line) are not called on the same function.
The text was updated successfully, but these errors were encountered:
steph643
pushed a commit
to sylque/Bellhop
that referenced
this issue
Apr 15, 2019
If you disconnect and reconnect, you end up receiving each message twice.
This is due to the fact that
Bellhop.disconnect()
doesn't release the event listener. Indeed,addEventListener
(see this line) andremoveEventListener
(see this line) are not called on the same function.The text was updated successfully, but these errors were encountered: