streaming: add `stream` param to streaming events

This commit is contained in:
Alex Gleason 2023-08-25 16:17:45 -05:00
parent b60e84d29b
commit a93d77c851
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@ const streamingController: AppController = (c) => {
socket.send(JSON.stringify({
event: name,
payload: JSON.stringify(payload),
stream: [stream],
}));
}
}