Skip to content

Commit c9dc680

Browse files
Merge pull request #104 from nullinside-development-group/bug/update
bug: fixing stray quotation marks
2 parents 8902bb7 + 80d81aa commit c9dc680

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TwitchStreamingTools/Views/MainWindow.axaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ protected override void OnInitialized() {
4545
// handle the command line arguments for updating the application if applicable.
4646
string[] args = Environment.GetCommandLineArgs();
4747
if (args.Contains("--update")) {
48-
_ = GitHubUpdateManager.PerformUpdateAndRestart("nullinside-development-group", "twitch-streaming-tools", args[2], "twitch-streaming-tools.zip ");
48+
_ = GitHubUpdateManager.PerformUpdateAndRestart("nullinside-development-group", "twitch-streaming-tools", args[2].Trim('"').Trim(), "twitch-streaming-tools.zip");
4949
return;
5050
}
5151

0 commit comments

Comments
 (0)