Skip to content

Commit

Permalink
Renames method to fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkormendy committed May 16, 2022
1 parent 9a501fb commit b2f4bac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ export class KonnectedHomebridgePlatform implements DynamicPlatformPlugin {
};

// use the above information to construct panel in Homebridge config
this.updateHombridgeConfig(panelUUID, panelResponseObject);
this.updateHomebridgeConfig(panelUUID, panelResponseObject);

// if the settings property does not exist in the response,
// then we have an unprovisioned panel
Expand Down Expand Up @@ -385,7 +385,7 @@ export class KonnectedHomebridgePlatform implements DynamicPlatformPlugin {
* @param panelUUID string UUID for the panel as reported in the USN on discovery.
* @param panelObject PanelObjectInterface The status response object of the plugin from discovery.
*/
updateHombridgeConfig(panelUUID: string, panelObject: PanelObjectInterface) {
updateHomebridgeConfig(panelUUID: string, panelObject: PanelObjectInterface) {
// homebridge constants
const config = this.api.user.configPath();
const storage = this.api.user.storagePath();
Expand Down

0 comments on commit b2f4bac

Please sign in to comment.