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 UnityHttpRequest on update progress event action is not null checked. This means if you call the Send method on UnityHttpRequest without adding a listener to Download or Upload progress changed event then you will get a null reference. This event should not be a requirement of a UnityHttpRequest.
To fix this we can use null propagation on the event before Invoking.
The text was updated successfully, but these errors were encountered:
The UnityHttpRequest on update progress event action is not null checked. This means if you call the Send method on UnityHttpRequest without adding a listener to Download or Upload progress changed event then you will get a null reference. This event should not be a requirement of a UnityHttpRequest.
To fix this we can use null propagation on the event before Invoking.
The text was updated successfully, but these errors were encountered: