Skip to content

Commit

Permalink
Fix misleading info in dryrun
Browse files Browse the repository at this point in the history
  • Loading branch information
theirix committed Sep 10, 2023
1 parent 9752d15 commit 41f04be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scrobbler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn scrobble_timeline(
start_time += Duration::new(track.duration, 0) + track_gap;
info!(
"{} track #{} '{}' of artist '{}' at {}",
if dryrun { "Scrobbling" } else { "Previewing" },
if dryrun { "Previewing" } else { "Scrobbling" },
idx + 1,
&track.title,
&artist,
Expand Down

0 comments on commit 41f04be

Please sign in to comment.