Skip to content

Commit

Permalink
fix #279
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorz914 committed Sep 7, 2024
1 parent bfb7adf commit 8ee5e12
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"displayName": "Denon TV",
"name": "homebridge-denon-tv",
"version": "5.1.9",
"version": "5.1.10",
"description": "Homebridge plugin to control Denon/Marantz AV Receivers.",
"license": "MIT",
"author": "grzegorz914",
Expand Down
2 changes: 1 addition & 1 deletion src/mainzone.js
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ class MainZone extends EventEmitter {

return true;
} catch (error) {
await this.openwebif.impulseGenerato.stop();
await this.denon.impulseGenerato.stop();
throw new Error(`Start error: ${error.message || error}, check again in 15s.`);
};
};
Expand Down
2 changes: 1 addition & 1 deletion src/surround.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class Surround extends EventEmitter {

return true;
} catch (error) {
await this.openwebif.impulseGenerato.stop();
await this.denon.impulseGenerato.stop();
throw new Error(`Start error: ${error.message || error}, check again in 15s.`);
};
};
Expand Down
2 changes: 1 addition & 1 deletion src/zone2.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ class Zone2 extends EventEmitter {

return true;
} catch (error) {
await this.openwebif.impulseGenerato.stop();
await this.denon.impulseGenerato.stop();
throw new Error(`Start error: ${error.message || error}, check again in 15s.`);
};
};
Expand Down
2 changes: 1 addition & 1 deletion src/zone3.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ class Zone3 extends EventEmitter {

return true;
} catch (error) {
await this.openwebif.impulseGenerato.stop();
await this.denon.impulseGenerato.stop();
throw new Error(`Start error: ${error.message || error}, check again in 15s.`);
};
};
Expand Down

0 comments on commit 8ee5e12

Please sign in to comment.