Fix use of wrong setting variable

This commit is contained in:
0xb00bface 2021-01-23 10:24:08 +01:00
parent 7aa96eabae
commit 62cafd7b40
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ public class HlsdlDownload extends AbstractDownload {
try {
String[] cmdline = prepareCommandLine();
hlsdl = new Hlsdl.Builder()
.logOutput(config.getSettings().logFFmpegOutput)
.logOutput(config.getSettings().loghlsdlOutput)
.onStarted(p -> hlsdlProcess = p)
.build();
hlsdl.exec(cmdline, OS.getEnvironment(), targetFile.getParentFile());