diff options
author | metamuffin <metamuffin@disroot.org> | 2025-02-07 16:26:18 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-02-07 16:26:18 +0100 |
commit | ffe3e9cca5341ff102ac2211e165b908e068be15 (patch) | |
tree | d69a9fdb9303e0ca66d85a6764e72a411fa7c475 /import/src | |
parent | 9ff2358adca561b7723e9c4d79efce87025d2e4e (diff) | |
download | jellything-ffe3e9cca5341ff102ac2211e165b908e068be15.tar jellything-ffe3e9cca5341ff102ac2211e165b908e068be15.tar.bz2 jellything-ffe3e9cca5341ff102ac2211e165b908e068be15.tar.zst |
more clippy
Diffstat (limited to 'import/src')
-rw-r--r-- | import/src/lib.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/import/src/lib.rs b/import/src/lib.rs index 8cc9ddd..f97e70f 100644 --- a/import/src/lib.rs +++ b/import/src/lib.rs @@ -496,9 +496,8 @@ fn import_media_file( let tmdb_details = rthandle.block_on(tmdb.episode_details(tmdb_id, season, episode))?; if let Some(still) = &tmdb_details.still_path { - poster = Some( - AssetInner::Cache(rthandle.block_on(tmdb.image(still))?).ser(), - ) + poster = + Some(AssetInner::Cache(rthandle.block_on(tmdb.image(still))?).ser()) } } } |