diff --git a/packages/core/neocyclist.mjs b/packages/core/neocyclist.mjs index fa1013df1..3e412074d 100644 --- a/packages/core/neocyclist.mjs +++ b/packages/core/neocyclist.mjs @@ -44,7 +44,7 @@ export class NeoCyclist { const timeUntilTrigger = cycleToSeconds(hap.whole.begin - this.cycle, this.cps); const targetTime = timeUntilTrigger + currentTime + this.latency; const duration = cycleToSeconds(hap.duration, this.cps); - onTrigger?.(hap, 0, duration, this.cps, targetTime, begin); + onTrigger?.(hap, 0, duration, this.cps, targetTime); } }); };