Skip to content

Commit

Permalink
fix: correct name, hideFindButton, debugLog vars
Browse files Browse the repository at this point in the history
  • Loading branch information
apexad committed Jun 11, 2020
1 parent 11af972 commit b3a6b84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ class EufyRoboVacAccessory {
localKey: config.localKey,
};
this.services = [];
this.name = this.config.name || 'Eufy RoboVac';
this.hideFindButton = this.config.hideFindButton || false;
this.debugLog = this.config.debugLog;
this.name = config.name || 'Eufy RoboVac';
this.hideFindButton = config.hideFindButton || false;
this.debugLog = config.debugLog;

// Vacuum cleaner is not available in Homekit yet, register as Fan

Expand Down

0 comments on commit b3a6b84

Please # to comment.