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

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