Skip to content

Commit

Permalink
fix(spectrogram): use correct error message for failing to create spe…
Browse files Browse the repository at this point in the history
…ctrogram
  • Loading branch information
DevYukine committed Feb 29, 2024
1 parent 611ecb6 commit 132aac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spectrogram/spectrogram.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ pub async fn make_spectrogram_full(
if output.status.success() {
Ok(())
} else {
Err(anyhow::anyhow!("Failed to create torrent"))
Err(anyhow::anyhow!("Failed to create spectrogram"))
}
}

0 comments on commit 132aac3

Please sign in to comment.