mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-27 07:00:55 +03:00
Custom args and global custom args now use double comma as a delimiter. This should allow file names with spaces when using custom args (global and not)
This commit is contained in:
@@ -72,12 +72,15 @@ export class ArgModifierDialogComponent implements OnInit {
|
||||
}
|
||||
|
||||
addArg() {
|
||||
if (!this.modified_args) {
|
||||
this.modified_args = '';
|
||||
}
|
||||
// adds space
|
||||
if (this.modified_args !== '') {
|
||||
this.modified_args += ' ';
|
||||
this.modified_args += ',,';
|
||||
}
|
||||
|
||||
this.modified_args += this.stateCtrl.value + ' ' + (this.secondArgEnabled ? this.secondArg : '');
|
||||
this.modified_args += this.stateCtrl.value + (this.secondArgEnabled ? ',,' + this.secondArg : '');
|
||||
}
|
||||
|
||||
canAddArg() {
|
||||
|
||||
Reference in New Issue
Block a user