diff --git a/MixItUp.Base/Model/Overlay/OverlayPersistentTimerV3Model.cs b/MixItUp.Base/Model/Overlay/OverlayPersistentTimerV3Model.cs index 2b7906f12..16a424377 100644 --- a/MixItUp.Base/Model/Overlay/OverlayPersistentTimerV3Model.cs +++ b/MixItUp.Base/Model/Overlay/OverlayPersistentTimerV3Model.cs @@ -17,7 +17,7 @@ public class OverlayPersistentTimerV3Model : OverlayEventCountingV3ModelBase public const string SecondsProperty = "Seconds"; public const string TimerSpecialIdentifierPrefix = "timer"; - public const string TimerSecondsAddedSpecialIdentifierPrefix = TimerSpecialIdentifierPrefix + "secondsadded"; + public const string TimerSecondsAdjustedSpecialIdentifierPrefix = TimerSpecialIdentifierPrefix + "secondsadjusted"; public static readonly string DefaultHTML = OverlayResources.OverlayTimerDefaultHTML; public static readonly string DefaultCSS = OverlayResources.OverlayTextDefaultCSS; @@ -128,7 +128,7 @@ public override async Task ProcessEvent(UserV2ViewModel user, double amount) await this.CallFunction("adjustTime", properties); Dictionary specialIdentifiers = new Dictionary(); - specialIdentifiers[TimerSecondsAddedSpecialIdentifierPrefix] = amount.ToString(); + specialIdentifiers[TimerSecondsAdjustedSpecialIdentifierPrefix] = amount.ToString(); await ServiceManager.Get().Queue(this.TimerAdjustedCommandID, new CommandParametersModel(user, specialIdentifiers)); }