This commit is contained in:
2023-06-07 04:24:43 +02:00
parent ff729bca84
commit 8f2b2ac1e2

View File

@@ -137,9 +137,9 @@ pub enum DownloadArchiveCommand {
impl ToString for DownloadArchiveCommand {
fn to_string(&self) -> String {
match self {
DownloadArchiveCommand::Sequence { id } => format!("da_s_{id}"),
DownloadArchiveCommand::Author { id } => format!("da_a_{id}"),
DownloadArchiveCommand::Translator { id } => format!("da_t_{id}"),
DownloadArchiveCommand::Sequence { id } => format!("/da_s_{id}"),
DownloadArchiveCommand::Author { id } => format!("/da_a_{id}"),
DownloadArchiveCommand::Translator { id } => format!("/da_t_{id}"),
}
}
}