Skip to content

Commit

Permalink
Fix UpdateManager version number (WalletWasabi#13251)
Browse files Browse the repository at this point in the history
  • Loading branch information
lontivero authored Jul 11, 2024
1 parent fac19fd commit a0e515c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion WalletWasabi/Services/UpdateManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ protected override async Task ActionAsync(CancellationToken cancellationToken)
return;
}

UpdateStatus updateStatus = new();
UpdateStatus updateStatus = new()
{ClientVersion = availableMajorVersion, ClientUpToDate = !updateAvailable, IsReadyToInstall = false};

if (DownloadNewVersion)
{
Expand Down

0 comments on commit a0e515c

Please sign in to comment.