Skip to content

Commit

Permalink
fix(Log): Correctly pass log to update checker
Browse files Browse the repository at this point in the history
  • Loading branch information
hypery2k committed Jun 10, 2023
1 parent d89f6e7 commit a0aba9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const BroadlinkRMPlatform = class extends HomebridgePlatform {

this.discoverBroadlinkDevices();
this.showMessage();
setTimeout(checkForUpdates, 1800);
setTimeout(() => checkForUpdates(log), 1800);

if (!config.accessories) {config.accessories = []}

Expand Down

0 comments on commit a0aba9e

Please sign in to comment.