diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-04-14 16:02:42 +0200 | 
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-04-14 16:02:42 +0200 | 
| commit | 42e08750a5a9a112d458a5db1d6b169278e953c5 (patch) | |
| tree | 595db21dd2c51b4772a7371e062023b5488c40e7 /server/src/routes/compat/jellyfin | |
| parent | 4a36d9e96853bf04d17f8377a7fbf862d108b9f1 (diff) | |
| download | jellything-42e08750a5a9a112d458a5db1d6b169278e953c5.tar jellything-42e08750a5a9a112d458a5db1d6b169278e953c5.tar.bz2 jellything-42e08750a5a9a112d458a5db1d6b169278e953c5.tar.zst | |
stream info for transcoding
Diffstat (limited to 'server/src/routes/compat/jellyfin')
| -rw-r--r-- | server/src/routes/compat/jellyfin/mod.rs | 18 | 
1 files changed, 7 insertions, 11 deletions
| diff --git a/server/src/routes/compat/jellyfin/mod.rs b/server/src/routes/compat/jellyfin/mod.rs index 6066760..7393c5f 100644 --- a/server/src/routes/compat/jellyfin/mod.rs +++ b/server/src/routes/compat/jellyfin/mod.rs @@ -5,18 +5,14 @@  */  pub mod models; -use crate::routes::{ -    stream::rocket_uri_macro_r_stream, -    ui::{ -        account::{login_logic, session::Session}, -        assets::{ -            rocket_uri_macro_r_asset, rocket_uri_macro_r_item_backdrop, -            rocket_uri_macro_r_item_poster, -        }, -        error::MyResult, -        node::{aspect_class, DatabaseNodeUserDataExt}, -        sort::{filter_and_sort_nodes, FilterProperty, NodeFilterSort, SortOrder, SortProperty}, +use crate::routes::ui::{ +    account::{login_logic, session::Session}, +    assets::{ +        rocket_uri_macro_r_asset, rocket_uri_macro_r_item_backdrop, rocket_uri_macro_r_item_poster,      }, +    error::MyResult, +    node::{aspect_class, DatabaseNodeUserDataExt}, +    sort::{filter_and_sort_nodes, FilterProperty, NodeFilterSort, SortOrder, SortProperty},  };  use anyhow::{anyhow, Context};  use jellybase::{database::Database, CONF}; | 
