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
I'm getting an assertion failure in ZSyncTouchHandler.m on line 1217 in connection:receivedResponse: when the zsActionRequestPairing action is passed. It might be that it shouldn't be being passed, but instead of dying, I added the following case to ignore it:
case zsActionRequestPairing:
// Ignore this code
DLog(@"Ignoring zsActionRequestPairing code");
return;
That seemed to resolve the issue for me.
The text was updated successfully, but these errors were encountered:
I'm getting an assertion failure in ZSyncTouchHandler.m on line 1217 in connection:receivedResponse: when the zsActionRequestPairing action is passed. It might be that it shouldn't be being passed, but instead of dying, I added the following case to ignore it:
That seemed to resolve the issue for me.
The text was updated successfully, but these errors were encountered: