Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
fixed bug in websocket-stream: the interface for exstream is differen…
Browse files Browse the repository at this point in the history
…t, just send nil
  • Loading branch information
ildella committed Nov 22, 2023
1 parent 4bb6a61 commit 726f50f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fusto/websocket-stream-source.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ module.exports = socket => (push, next) => {
socket.on('close', () => {
// console.info('socket close event')
// eslint-disable-next-line unicorn/no-null
push(null, nil)
push(nil)
})
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moar-js",
"version": "1.11.1",
"version": "1.11.2",
"description": "Simple JavaScript files I use across projects",
"author": {
"name": "Daniele Dellafiore"
Expand Down

0 comments on commit 726f50f

Please sign in to comment.