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
MQTT.js tries to use WebSockets when run in the main process of electron resulting in Error: 'WebSocket is not defined'.
The is-browser module tries to identify running in browser by checking webpack_require to be function, which it is, as the main process is bundled by WebPack.
Nevertheless, it is not a browser process.
I suggest changing or dropping the legacy-check in that module, or at least, drop the web pack check.
The text was updated successfully, but these errors were encountered:
MQTT.js tries to use WebSockets when run in the main process of electron resulting in Error: 'WebSocket is not defined'.
The
is-browser
module tries to identify running in browser by checking webpack_require to be function, which it is, as the main process is bundled by WebPack.Nevertheless, it is not a browser process.
I suggest changing or dropping the legacy-check in that module, or at least, drop the web pack check.
The text was updated successfully, but these errors were encountered: