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 8fe5991 commit 0d1f995Copy full SHA for 0d1f995
packages/libs/world/src/streamer.ts
@@ -56,7 +56,6 @@ export const createStreamer = (client: Ingress): Streamer => {
56
57
if ("eos" in content && content.eos) {
58
// End of stream
59
- controller.close();
60
break;
61
}
62
@@ -71,7 +70,7 @@ export const createStreamer = (client: Ingress): Streamer => {
71
70
72
73
74
- // If the loop completes without explicit eos, close the stream
+ // Close the stream
75
controller.close();
76
} catch (error) {
77
controller.error(error);
0 commit comments