Merge pull request #1352 from PepperDash/theme-saving

fix: use correct overload for PostStatusMessage
This commit is contained in:
Jason DeVito 2025-11-03 15:08:28 -06:00 committed by GitHub
commit d3ceb4d7e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);
});
}
}