mol_wire_lib 1.0.1281 → 1.0.1282

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/node.mjs CHANGED
@@ -332,7 +332,7 @@ var $;
332
332
  const pub = this.data[cursor];
333
333
  pub?.sub_off(this.data[cursor + 1]);
334
334
  end -= 2;
335
- if (this.sub_from < end)
335
+ if (this.sub_from <= end)
336
336
  this.peer_move(end, cursor);
337
337
  }
338
338
  this.data.length = end;
package/node.test.js CHANGED
@@ -323,7 +323,7 @@ var $;
323
323
  const pub = this.data[cursor];
324
324
  pub?.sub_off(this.data[cursor + 1]);
325
325
  end -= 2;
326
- if (this.sub_from < end)
326
+ if (this.sub_from <= end)
327
327
  this.peer_move(end, cursor);
328
328
  }
329
329
  this.data.length = end;