mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-12 05:05:26 +02:00
Pacify updater (#1899)
* Updater: Remove dirs selectively * Log exceptions from updater async tasks * Address riperiperi's comments
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user