From a782b57100ace1ca8988b3cbdd44fdbf46c98147 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Mon, 3 Nov 2025 14:00:51 -0600 Subject: [PATCH] fix: use correct overload for PostStatusMessage --- .../Touchpanel/ThemeMessenger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PepperDash.Essentials.MobileControl/Touchpanel/ThemeMessenger.cs b/src/PepperDash.Essentials.MobileControl/Touchpanel/ThemeMessenger.cs index ffaf9cfc..35d85442 100644 --- a/src/PepperDash.Essentials.MobileControl/Touchpanel/ThemeMessenger.cs +++ b/src/PepperDash.Essentials.MobileControl/Touchpanel/ThemeMessenger.cs @@ -40,7 +40,7 @@ namespace PepperDash.Essentials.Touchpanel this.LogInformation("Setting theme to {theme}", theme.Value); _tpDevice.UpdateTheme(theme.Value); - PostStatusMessage(JToken.FromObject(new { theme = theme.Value }), id); + PostStatusMessage(JToken.FromObject(new { theme = theme.Value }), clientId: id); }); } }