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
An incorrect if statement was allowing data that had no contents to proceed to a parsing method. Replacing this with if (data.length > 0) {} correctly checks the data.
Reproduction Steps
Using the example video streaming app configured for SDL_iOS v4.7, starting the video service caused this crash
Expected Behavior
The app does not crash
OS & Version Information
iOS Version: 10.3.3
SDL iOS Version: 4.7
Testing Against: TDK through relay app
The text was updated successfully, but these errors were encountered:
Bug Report
An incorrect if statement was allowing data that had no contents to proceed to a parsing method. Replacing this with
if (data.length > 0) {}
correctly checks the data.Reproduction Steps
Expected Behavior
OS & Version Information
The text was updated successfully, but these errors were encountered: