Skip to content

Commit

Permalink
Merge pull request #66 from brotherlogic/run_rip
Browse files Browse the repository at this point in the history
Fixer
  • Loading branch information
brotherlogic committed Jan 12, 2019
2 parents 1699c6c + 03a2225 commit 2273069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdprocessorutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func (s *Server) convertToMP3(ctx context.Context) {
for _, t := range rip.Tracks {
if len(t.WavPath) > 0 && len(t.Mp3Path) == 0 {
s.ripCount++
s.Log(fmt.Sprintf("Ripping %v -> %v", s.dir+t.WavPath, s.dir+t.WavPath[0:len(t.WavPath)-3]+".mp3"))
s.Log(fmt.Sprintf("Ripping %v -> %v", s.dir+t.WavPath, s.dir+t.WavPath[0:len(t.WavPath)-3]+"mp3"))
s.buildConfig(ctx)
return
}
Expand Down

0 comments on commit 2273069

Please sign in to comment.