diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-24 18:11:23 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-24 18:47:29 +0100 |
commit | 7323709537c6ff14136cd79fb07606cd79391758 (patch) | |
tree | 3d817d449d4c0a821b9b5073c8acf826c6ccfda1 /stream/src/hls.rs | |
parent | cbb2e163abfefd8ed61c41a096d5d6c27b4721b4 (diff) | |
download | jellything-7323709537c6ff14136cd79fb07606cd79391758.tar jellything-7323709537c6ff14136cd79fb07606cd79391758.tar.bz2 jellything-7323709537c6ff14136cd79fb07606cd79391758.tar.zst |
refactor asset system pt. 1
Diffstat (limited to 'stream/src/hls.rs')
-rw-r--r-- | stream/src/hls.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/src/hls.rs b/stream/src/hls.rs index fb7276d..61d031c 100644 --- a/stream/src/hls.rs +++ b/stream/src/hls.rs @@ -51,7 +51,7 @@ pub async fn hls_variant_stream( ) -> Result<()> { let snips = spawn_blocking(move || { jellyremuxer::snippet::snippet_index( - &CONF.library_path, + &CONF.media_path, &node.public, local_tracks.get(0).ok_or(anyhow!("no track"))?, ) |