Skip to content

Commit

Permalink
fix quotes for custom arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxstupo committed Apr 19, 2021
1 parent e687d10 commit 90708c0
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 49 deletions.
97 changes: 49 additions & 48 deletions YDL-UI/Forms/FormAddDownload.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion YDL-UI/YoutubeDL/Model/YdlArguments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class YdlArguments {
[Argument("", QuotePolicy = QuotePolicy.Always, Order = int.MaxValue)] public string Url { get; set; } = null;

[Argument("", Order = int.MaxValue - 1)]
[Argument("", QuotePolicy = QuotePolicy.Off, Order = int.MaxValue - 1)]
public string CustomArgs { get; set; }

public YdlArgumentsGeneral General { get; set; } = new YdlArgumentsGeneral();
Expand Down

0 comments on commit 90708c0

Please sign in to comment.