Skip to content

Commit

Permalink
Fixed #91 v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Assistant committed Feb 28, 2020
1 parent 4cb40f7 commit 2eae95e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ModAssistant/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ private async void Application_Startup(object sender, StartupEventArgs e)
}
else
{
ArgumentHandler(e.Args);
await ArgumentHandler(e.Args);
}
}

private async void ArgumentHandler(string[] args)
private async Task ArgumentHandler(string[] args)
{
switch (args[0])
{
Expand Down

2 comments on commit 2eae95e

@ecm85
Copy link

@ecm85 ecm85 commented on 2eae95e Feb 28, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good 👍

@Assistant
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

o7

Please sign in to comment.