openclaw-elys 1.7.3 → 1.7.4

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.
@@ -57,8 +57,6 @@ export async function monitorElysProvider(opts) {
57
57
  });
58
58
  // Deliver callback: stream chunks back via MQTT
59
59
  const deliver = async (payload, info) => {
60
- if (signal.aborted)
61
- return;
62
60
  if (payload.text) {
63
61
  fullText += payload.text;
64
62
  seq++;
@@ -211,9 +211,7 @@ export class ElysDeviceMQTTClient {
211
211
  signal.addEventListener("abort", () => clearTimeout(timer), { once: true });
212
212
  }),
213
213
  ]);
214
- if (!signal.aborted) {
215
- this.publish(result);
216
- }
214
+ this.publish(result);
217
215
  }
218
216
  catch (err) {
219
217
  if (signal.aborted) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-elys",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "description": "OpenClaw Elys channel plugin — connects to Elys App",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",