Fix issue with download locations?

This commit is contained in:
Nekojimi 2024-04-21 17:00:48 +01:00
parent 4a5c0d41c9
commit 7c24016bac
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ public class Downloader extends QueueThing<TrackRequest, Track>
cmd.add("-");
} else
{
cmd.add("-o " + getDownloadDir(false).getAbsolutePath() + "/%(title)s.%(ext)s");
cmd.add("-o" + getDownloadDir(false).getAbsolutePath() + "/%(title)s.%(ext)s");
}
cmd.add(request.getUrl().toString());