Skip to content

Commit

Permalink
Fixed error regarding publish
Browse files Browse the repository at this point in the history
  • Loading branch information
CarbonNeuron committed Jan 25, 2021
1 parent 03ebffb commit 100d98c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions AUCapture-WPF/MainWindow.xaml.cs
Expand Up @@ -238,10 +238,12 @@ private void ProcessOnExited(object? sender, EventArgs e)

public async void Update()
{
Version version = new Version();
Version latestVersion = new Version();
try
{
Version version = new Version(context.Version);
Version latestVersion = new Version(context.LatestVersion);
version = new Version(context.Version);
latestVersion = new Version(context.LatestVersion);
}
catch (Exception e)
{
Expand Down

0 comments on commit 100d98c

Please sign in to comment.