@openlap/openlap 1.1.6 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/proxy.js +2 -1
- package/package.json +1 -1
package/dist/proxy.js
CHANGED
|
@@ -180,7 +180,8 @@ export async function startProxy() {
|
|
|
180
180
|
if (!channel)
|
|
181
181
|
return { content: [{ type: "text", text: "channel required" }], isError: true };
|
|
182
182
|
const result = await channels.join(channel, args.name);
|
|
183
|
-
//
|
|
183
|
+
// Use v1 FeedManager for SSE delivery (proven working)
|
|
184
|
+
feeds.subscribe(channel);
|
|
184
185
|
if (!result)
|
|
185
186
|
return { content: [{ type: "text", text: JSON.stringify({ error: "already joined or failed" }) }] };
|
|
186
187
|
const r = result;
|