Skip to content

Commit

Permalink
fix: Wrong parameter-checking
Browse files Browse the repository at this point in the history
  • Loading branch information
TopperDEL committed Aug 11, 2022
1 parent 2a428c4 commit 8a81772
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Quickshare/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

//Check if the user wants to set new config-values
bool requestsConfigUpdate = false;
Parser.Default.ParseArguments<CommandLineConfigOptions>(args)
.WithParsed(o =>
Parser.Default.ParseArguments<CommandLineConfigOptions, CommandLineShareOptions>(args)
.WithParsed<CommandLineConfigOptions>(o =>
{
requestsConfigUpdate = true;
});
Expand Down
4 changes: 2 additions & 2 deletions Quickshare/Quickshare.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<Title>Quickshare</Title>
<Authors>TopperDEL</Authors>
<Company>TopperDEL</Company>
<Version>1.0.0</Version>
<PackageReleaseNotes>Release v1.0.0!
<Version>1.0.1</Version>
<PackageReleaseNotes>Release v1.0.1!
Supports Windows, Linux and MacOS</PackageReleaseNotes>
<Description>This package lets you share files quickly by leveraging Storj DCS.</Description>
<Copyright>2022 TopperDEL</Copyright>
Expand Down

0 comments on commit 8a81772

Please sign in to comment.