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 0d00e4d commit 4414d4eCopy full SHA for 4414d4e
templates/app/server/config/websockets(ws).js
@@ -25,7 +25,9 @@ function onConnect(spark) {
25
});
26
27
// Register the spark with each WebSocket event handler
28
- for(let register of registerFunctions) {
+ // For some reason this is needed:
29
+ // eslint-disable-next-line no-unused-vars
30
+ for(const register of registerFunctions) {
31
register(spark);
32
}
33
0 commit comments