Pacify updater (#1899)
* Updater: Remove dirs selectively * Log exceptions from updater async tasks * Address riperiperi's comments
This commit is contained in:
parent
bcbf240d2e
commit
fa55d7133a
3 changed files with 44 additions and 17 deletions
|
@ -1131,7 +1131,10 @@ namespace Ryujinx.Ui
|
|||
{
|
||||
if (Updater.CanUpdate(true))
|
||||
{
|
||||
_ = Updater.BeginParse(this, true);
|
||||
Updater.BeginParse(this, true).ContinueWith(task =>
|
||||
{
|
||||
Logger.Error?.Print(LogClass.Application, $"Updater Error: {task.Exception}");
|
||||
}, TaskContinuationOptions.OnlyOnFaulted);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue