aboutsummaryrefslogtreecommitdiff
path: root/common/src
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-04-19 00:03:53 +0200
committermetamuffin <metamuffin@disroot.org>2025-04-19 00:03:53 +0200
commit112dcf3009a09e87a619ce5729351c23b65e8d0d (patch)
tree0ce9ea638b817c8b381d52364b0401fe4cc8b985 /common/src
parenta123a1997f3ab527ab83b44ca18bec94883f46d0 (diff)
downloadjellything-112dcf3009a09e87a619ce5729351c23b65e8d0d.tar
jellything-112dcf3009a09e87a619ce5729351c23b65e8d0d.tar.bz2
jellything-112dcf3009a09e87a619ce5729351c23b65e8d0d.tar.zst
manual clippy fixes
Diffstat (limited to 'common/src')
-rw-r--r--common/src/stream.rs2
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}")
}