Skip to content

Commit

Permalink
GreenPower devices don't support a network scan. #3322
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Apr 11, 2020
1 parent 4cc0e5d commit e1ec160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/extension/networkMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class NetworkMap extends BaseExtension {

async networkScan(includeRoutes) {
logger.info(`Starting network scan (includeRoutes '${includeRoutes}')`);
const devices = this.zigbee.getDevices();
const devices = this.zigbee.getDevices().filter((d) => d.type !== 'GreenPower');
const lqis = new Map();
const routingTables = new Map();
const failed = new Map();
Expand Down

0 comments on commit e1ec160

Please sign in to comment.