Skip to content

Commit

Permalink
Fixed an issue causing UpdateForm to not show up again even if Start …
Browse files Browse the repository at this point in the history
…method was called again. This fixes #520.
  • Loading branch information
ravibpatel committed Jun 1, 2022
1 parent ee91865 commit cb19018
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion AutoUpdater.NET/AutoUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,12 @@ public static void Start(string appCast, Assembly myAssembly = null)
{
var result = CheckUpdate(assembly);

Running = StartUpdate(result);
if (StartUpdate(result))
{
return;
}

Running = false;
}
catch (Exception exception)
{
Expand Down

0 comments on commit cb19018

Please sign in to comment.