Stremio / stremio-core

⚛️ The Stremio Core: types, addon system, UI models, core logic
MIT License
885 stars 64 forks source link

Feat/stream and subtitle relative url #641

Open elpiel opened 5 months ago

elpiel commented 5 months ago

After receiving a response from an addon, converts all relative paths to absolute Url to the addon. This cannot be done on deserialization since the addon url is not known at this point. Sadly, due to serde's complexity, we cannot use a generic argument to specify 2 types - one right after deserialization and one after replacement, in order to allow for the rest of the core to rely entirely on absolute Urls.

TODO