Files
shaka-player/lib/hls
Álvaro Velad Galván 948660b359 fix: don't double wrap URIs for HLS key requests (#6246)
The `constructSegmentUris` util already returns an array, so the call to `makeRequest` was being made with an array of arrays. This wasn't causing errors for requests that use the `fetch` plugin, since `fetch` will stringify the first argument if it's an array. But the data URI plugin expects to receive a string and calls `.split()` on it, so keys using data URIs throw an error if the URI is wrapped in an array.

Thanks to https://github.com/shaka-project/shaka-player/pull/6243 and @andrew0
2024-02-14 09:06:57 -08:00
..