You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Send a Reidentify with new event subscriptions
338
+
/// </summary>
339
+
/// <returns>true if we sent the reidentify, false if failed</returns>
340
+
protectedboolSendReidentify()
341
+
{
342
+
if(wsConnection==null||!wsConnection.IsStarted)returnfalse;// #TODO check if we are in Identified/Connected state, if we didn't send our Identify yet, we shouldn't send Reidentify now
thrownewProtocolViolationException("Expected InputVolumeMeter/inputLevelsMul to be an array");
30
+
31
+
JTokentoken=JToken.Load(reader);
32
+
varitems=token.ToObject<float[]>();
33
+
34
+
if(items.Length!=3)
35
+
thrownewProtocolViolationException($"Expected InputVolumeMeter/inputLevelsMul to be an 3 element array, but instead got {items.Length} element array");
0 commit comments