diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-19 00:03:53 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-19 00:03:53 +0200 |
commit | 112dcf3009a09e87a619ce5729351c23b65e8d0d (patch) | |
tree | 0ce9ea638b817c8b381d52364b0401fe4cc8b985 /common | |
parent | a123a1997f3ab527ab83b44ca18bec94883f46d0 (diff) | |
download | jellything-112dcf3009a09e87a619ce5729351c23b65e8d0d.tar jellything-112dcf3009a09e87a619ce5729351c23b65e8d0d.tar.bz2 jellything-112dcf3009a09e87a619ce5729351c23b65e8d0d.tar.zst |
manual clippy fixes
Diffstat (limited to 'common')
-rw-r--r-- | common/src/stream.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/stream.rs b/common/src/stream.rs index ca1ec29..79cb380 100644 --- a/common/src/stream.rs +++ b/common/src/stream.rs @@ -147,7 +147,7 @@ impl StreamSpec { StreamSpec::Info { segment: Some(segment), } => format!("?info&segment={segment}"), - StreamSpec::Info { segment: None } => format!("?info"), + StreamSpec::Info { segment: None } => "?info".to_string(), StreamSpec::FragmentIndex { segment, track } => { format!("?fragmentindex&segment={segment}&track={track}") } |