Avoid re-opening connections after they're closed

This commit is contained in:
Jon Staab
2024-12-16 15:20:10 -08:00
parent 8825ed4d57
commit 887fbfc25d
9 changed files with 24 additions and 22 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ export class Echo extends Emitter {
return []
}
send(...payload: Message) {
async send(...payload: Message) {
this.emit(...payload)
}