fix: send touchpanel key correctly

This commit is contained in:
Andrew Welker
2025-10-23 10:01:05 -05:00
parent 44432f7a41
commit 514ac850ca

View File

@@ -112,7 +112,7 @@ namespace PepperDash.Essentials.WebSocketServer
{
clientId = Id,
roomKey = RoomKey,
touchpanelKey = string.IsNullOrEmpty(TouchpanelKey) ? TouchpanelKey : string.Empty,
touchpanelKey = string.IsNullOrEmpty(TouchpanelKey) ? string.Empty : TouchpanelKey,
})
};