Skip to content

Commit

Permalink
fix notification on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
adamPetho committed Nov 10, 2022
1 parent da0b40b commit 384fca0
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions WalletWasabi/Services/UpdateManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,7 @@ private async void UpdateChecker_UpdateStatusChangedAsync(object? sender, Update
return;
}

if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
Logger.LogInfo("For Linux, get the correct update manually.");
Cleanup();
return;
}

if (DownloadNewVersion)
if (DownloadNewVersion && !RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
do
{
Expand Down

0 comments on commit 384fca0

Please sign in to comment.