aboutsummaryrefslogtreecommitdiff
path: root/stream/src/fragment.rs
diff options
context:
space:
mode:
Diffstat (limited to 'stream/src/fragment.rs')
-rw-r--r--stream/src/fragment.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/stream/src/fragment.rs b/stream/src/fragment.rs
index 1082e1c..4b4fd44 100644
--- a/stream/src/fragment.rs
+++ b/stream/src/fragment.rs
@@ -36,7 +36,7 @@ pub async fn fragment_stream(
if let Some(profile) = spec.profile {
perms.assert(&UserPermission::Transcode)?;
let location = transcode(
- &format!("{track} {n} {:?}", node.private.source), // TODO maybe not use the entire source
+ &format!("{track} {n} {:?}", node), // TODO maybe not use the entire source
CONF.transcoding_profiles
.get(profile)
.ok_or(anyhow!("profile out of range"))?,
@@ -45,7 +45,7 @@ pub async fn fragment_stream(
if let Err(err) = jellyremuxer::write_fragment_into(
SyncIoBridge::new(b),
&CONF.media_path,
- &node.public,
+ &node,
&local_track,
track,
false,
@@ -69,7 +69,7 @@ pub async fn fragment_stream(
if let Err(err) = jellyremuxer::write_fragment_into(
b,
&CONF.media_path,
- &node.public,
+ &node,
&local_track,
track,
spec.webm.unwrap_or(false),