twitchdev / issues

Issue tracker for third party developers.
Apache License 2.0
72 stars 7 forks source link

Unable to upload large extension bundle #874

Closed KiKoS0 closed 7 months ago

KiKoS0 commented 7 months ago

Brief description I have a relatively large bundle (100+MB mainly image assets) and I upload them from a slow network (8Mbps). A recurring issue I've observed is that the UI consistently times out with an error message before the upload process is completed. (The upload request is still happening in the devtools). Which basically fails to update the manifest.

How to reproduce Upload a large zip file with a slow network.

Expected behavior The zip file is uploaded and updated without any errors.

Screenshots image

BarryCarlyon commented 7 months ago

There is an undocumented file upload limit.

Which we don't know what it is. So your file is too large anyway.

Here you probably want to put your iamges on your OWN CDN which then makes it easier to update them without needing an extension review.

And you just want the layout items in your bundle not your content items

See also 2.8 - https://dev.twitch.tv/docs/extensions/guidelines-and-policies/ Which doesn't mention images directly per sae.

KiKoS0 commented 7 months ago

I see, the limit is probably set to 100MB, because it worked fine for years when it was just below it. Thank you I'll use my own cdn. I had it setup this way for a long time to minimize latency and never revisited it.