We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
save the hash (or prefix of hash) of the last playing stream in the LibItem, in order to be able to identify it on another device as well
LibItem
The text was updated successfully, but these errors were encountered:
Should be implemented as a StreamsBucket, which should behave and be structured in a similar way as LibraryBucket.
We could also persist the entire stream object and not just a hash against which we match later.
Possible structure of the StreamsBucket could be:
#[serde_as] #[derive(Serialize, Deserialize)] struct StreamsBucket { pub uid: UID, #[serde_as(as = "Vec<(_, _)>")] pub items: HashMap<(String, String), (Url, Stream)>, }
where the key is (item.id, video.id) and the value is (addon.transport_url, stream)
Sorry, something went wrong.
Merge pull request #65 from Stremio/feat/wasm-build-improvement
10858be
feat: add dev build and skip package.json creation
nklhtv
Successfully merging a pull request may close this issue.
save the hash (or prefix of hash) of the last playing stream in the
LibItem
, in order to be able to identify it on another device as wellThe text was updated successfully, but these errors were encountered: