homebridge-kasa-python 2.2.6 → 2.2.8

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.
@@ -31,7 +31,6 @@ async def discover_devices(username=None, password=None):
31
31
  app.logger.debug('Starting device discovery...')
32
32
  try:
33
33
  devices = await Discover.discover(username=username, password=password)
34
- app.logger.debug(f'Discovered devices: {devices}')
35
34
  except Exception as e:
36
35
  app.logger.error(f'Error during device discovery: {str(e)}')
37
36
  app.logger.error(f'Traceback: {traceback.format_exc()}')
@@ -51,6 +50,7 @@ async def discover_devices(username=None, password=None):
51
50
  except Exception as e:
52
51
  app.logger.error(f'Error processing device at {ip}: {str(e)}')
53
52
  app.logger.error(f'Traceback: {traceback.format_exc()}')
53
+ continue
54
54
  except Exception as e:
55
55
  app.logger.error(f'Error iterating through devices: {str(e)}')
56
56
  app.logger.error(f'Traceback: {traceback.format_exc()}')
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Homebridge Kasa Python",
3
3
  "name": "homebridge-kasa-python",
4
- "version": "2.2.6",
4
+ "version": "2.2.8",
5
5
  "description": "Plugin that uses Python-Kasa API to communicate with Kasa Devices.",
6
6
  "license": "MIT",
7
7
  "type": "module",