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
{{ message }}
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.
On line 33, you use the same variable name driverSockets as in the larger scope. The variable in the larger scope happens to be declared after this line, so it'll work, but if you just moved the declaration higher, you'd end up mutating the global variable instead. I suggest you rename this var :)
On line 33, you use the same variable name
driverSockets
as in the larger scope. The variable in the larger scope happens to be declared after this line, so it'll work, but if you just moved the declaration higher, you'd end up mutating the global variable instead. I suggest you rename this var :)https://github.com/houmio/houmio-bridge/blob/master/src/bridge.coffee#L33
The text was updated successfully, but these errors were encountered: