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
The IAPSession `stop code currently contains the following line:
NSAssert([NSThreadisMainThread], @"stop must be called on the main thread");
However, due to the RPC response queue changes in #813 we are seeing rare cases where stop will be called off the main thread. We should wrap it to force it onto the main queue if it is not via dispatch_sync to ensure timing remains the same.
Reproduction Steps
Unknown
Expected Behavior
The stop succeeds
Observed Behavior
The stop fails
OS & Version Information
iOS Version: n/a
SDL iOS Version: 5.1.0 develop
Testing Against: TDK
The text was updated successfully, but these errors were encountered:
Bug Report
The IAPSession `stop code currently contains the following line:
However, due to the RPC response queue changes in #813 we are seeing rare cases where
stop
will be called off the main thread. We should wrap it to force it onto the main queue if it is not viadispatch_sync
to ensure timing remains the same.Reproduction Steps
Unknown
Expected Behavior
The
stop
succeedsObserved Behavior
The
stop
failsOS & Version Information
The text was updated successfully, but these errors were encountered: