incyclist-devices 3.0.23 → 3.0.24

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.
@@ -276,8 +276,8 @@ class DirectConnectPeripheral {
276
276
  }
277
277
  }
278
278
  for (const element of retry) {
279
- const c = element;
280
- await this.subscribe(c.uuid, callback);
279
+ const uuid = element;
280
+ await this.subscribe(uuid, callback);
281
281
  }
282
282
  return true;
283
283
  }
@@ -270,8 +270,8 @@ export class DirectConnectPeripheral {
270
270
  }
271
271
  }
272
272
  for (const element of retry) {
273
- const c = element;
274
- await this.subscribe(c.uuid, callback);
273
+ const uuid = element;
274
+ await this.subscribe(uuid, callback);
275
275
  }
276
276
  return true;
277
277
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "incyclist-devices",
3
- "version": "3.0.23",
3
+ "version": "3.0.24",
4
4
  "scripts": {
5
5
  "lint": "eslint . --ext .ts",
6
6
  "build": "npm run build:esm && npm run build:cjs",