vimeo / vimeo-unity-sdk

Easily stream your Vimeo videos into Unity or record and publish out to Vimeo.
MIT License
211 stars 49 forks source link

Chunk upload errors are ignored #141

Open vinaysshenoy opened 2 years ago

vinaysshenoy commented 2 years ago

It seems like HTTP upload errors for pushing TUS chunks are being ignored.

Before this (DIFF) change, the chunk upload code was checking for both network errors as well as upload errors.

In this PR, the code was changed to delegate to a utility function to check whether the upload failed, but that function only seems to check for network errors and not HTTP upload errors.