1
0
forked from MeloNX/MeloNX

Ava: Fix Updater crashing on Linux (#4457)

This commit is contained in:
TSRBerry 2023-02-22 09:13:50 +01:00 committed by GitHub
parent fb9141c4c5
commit 25dd7e6618

View File

@ -506,6 +506,11 @@ namespace Ryujinx.Modules
Dispatcher.UIThread.Post(() =>
{
if (tarEntry is null)
{
return;
}
taskDialog.SetProgressBarState(GetPercentage(tarEntry.Size, inStream.Length), TaskDialogProgressState.Normal);
});
}