We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8449647 commit 6ad5e98Copy full SHA for 6ad5e98
desktop/src/player.rs
@@ -164,7 +164,7 @@ impl ActivePlayer {
164
tracing::warn!("{warning}");
165
}
166
167
- content = PlayingContent::Bundle(movie_url.clone(), bundle);
+ content = PlayingContent::Bundle(movie_url.clone(), Box::new(bundle));
168
169
Err(BundleError::BundleDoesntExist)
170
| Err(BundleError::InvalidSource(BundleSourceError::UnknownSource)) => {
frontend-utils/src/content.rs
@@ -6,7 +6,7 @@ use url::Url;
6
7
pub enum PlayingContent {
8
DirectFile(Url),
9
- Bundle(Url, Bundle),
+ Bundle(Url, Box<Bundle>),
10
11
12
impl Debug for PlayingContent {
0 commit comments