We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8afd85 commit cabc8cdCopy full SHA for cabc8cd
1 file changed
src/platformAccessory.ts
@@ -166,7 +166,7 @@ export class TempStickAccessory {
166
`Next Checkin is invalid: ${this.accessory.context.device.next_checkin}`,
167
`Unsuccessfully parsed the next checkin date of the sensor ${this.accessory.context.sensor_id}`));
168
}
169
- const timeBetweenSubsequent = parseInt(this.accessory.context.device.send_interval) * 1000 + sensorDelay;
+ const timeBetweenSubsequent = parseInt(this.accessory.context.device.send_interval) * 1000;
170
// Add additional user defined delay from plugin configuration, in seconds, to milliseconds
171
if (this.platform.config.delay) {
172
timeToNext += (parseInt(this.platform.config.delay) * 1000);
0 commit comments