Always call zigbee shepherd permit join (in both true and false).

This commit is contained in:
Koenkk 2018-09-23 00:07:31 +02:00
parent 845a5cdce8
commit da06e87276
2 changed files with 3 additions and 1 deletions

View File

@ -60,9 +60,10 @@ class Controller {
logger.warn('`permit_join` set to `true` in configuration.yaml.');
logger.warn('Allowing new devices to join.');
logger.warn('Set `permit_join` to `false` once you joined all devices.');
this.zigbee.permitJoin(true);
}
this.zigbee.permitJoin(settings.get().permit_join);
// Start timers.
this.pollTimer(true);
this.softResetTimeout(true);

View File

@ -6,6 +6,7 @@ const objectAssignDeep = require(`object-assign-deep`);
const path = require('path');
const defaults = {
permit_join: false,
advanced: {
log_directory: path.join(data.getPath(), 'log', '%TIMESTAMP%'),
log_level: process.env.DEBUG ? 'debug' : 'info',