We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 933c265 commit 266602bCopy full SHA for 266602b
src/v1/internal/browser/browser-channel.js
@@ -51,10 +51,12 @@ export default class WebSocketChannel {
51
// All connection errors are not sent to the error handler
52
// we must also check for dirty close calls
53
this._ws.onclose = function (e) {
54
+ console.error('onclose', e)
55
if (!e.wasClean) {
56
self._handleConnectionError()
57
}
58
self._open = false
59
+ console.log('this._open', this._open, self._open)
60
61
this._ws.onopen = function () {
62
// Connected! Cancel the connection timeout
0 commit comments