mirror of
https://github.com/GuillemCastro/spotify-dl.git
synced 2024-11-22 02:10:26 +01:00
typo + more digits for track number
This commit is contained in:
parent
58125236e1
commit
a001184117
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ struct Opt {
|
||||||
#[structopt(
|
#[structopt(
|
||||||
short = "o",
|
short = "o",
|
||||||
long = "ordered",
|
long = "ordered",
|
||||||
help = "Download songs in the order they are in the playlist, prfixing the filename with the track number"
|
help = "Prefixing the filename with its index in the playlist"
|
||||||
)]
|
)]
|
||||||
ordered: bool,
|
ordered: bool,
|
||||||
}
|
}
|
||||||
|
@ -104,7 +104,7 @@ async fn download_tracks(
|
||||||
let full_track_name = format!("{} - {}", artist_name, metadata.track_name);
|
let full_track_name = format!("{} - {}", artist_name, metadata.track_name);
|
||||||
let filename: String;
|
let filename: String;
|
||||||
if ordered {
|
if ordered {
|
||||||
filename = format!("{:02} - {}.flac", i + 1, full_track_name);
|
filename = format!("{:03} - {}.flac", i + 1, full_track_name);
|
||||||
} else {
|
} else {
|
||||||
filename = format!("{}.flac", full_track_name);
|
filename = format!("{}.flac", full_track_name);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue