Fixed SetStringSigAction stack overflow ;-); Added DDVC room bridge class with basic actions attached and messages prepared

This commit is contained in:
Heath Volmer
2018-01-15 11:35:04 -07:00
parent cd747a01ea
commit ba5036e400
10 changed files with 300 additions and 36 deletions

View File

@@ -211,7 +211,7 @@ namespace PepperDash.Essentials
/// </summary>
/// <param name="room">room from which the message originates</param>
/// <param name="o">object to be serialized and sent in post body</param>
public void PostToServer(EssentialsRoomBase room, JObject o)
public void PostToServer(JObject o)
{
CrestronInvoke.BeginInvoke(oo =>
{
@@ -258,7 +258,7 @@ namespace PepperDash.Essentials
// Try again. This client is hosed.
NeedNewClient = true;
PostLockEvent.Set();
PostToServer(room, o);
PostToServer(o);
}
});
}