Fixed an issue where the path to the multi dl folder coud not contain a space
This commit is contained in:
parent
362e40ab13
commit
31628128b2
1 changed files with 1 additions and 1 deletions
|
|
@ -200,7 +200,7 @@ class Merger {
|
|||
console.log(f.path);
|
||||
args.push('--attachment-name', f.name);
|
||||
args.push('--attachment-mime-type', f.mime);
|
||||
args.push('--attach-file', f.path);
|
||||
args.push('--attach-file', `"${f.path}"`);
|
||||
}
|
||||
} else {
|
||||
args.push(
|
||||
|
|
|
|||
Loading…
Reference in a new issue