Run formatter

This commit is contained in:
Jimmy Reichley 2024-08-16 23:28:30 -04:00
parent 7850a2b2aa
commit 47e2cc6f02
No known key found for this signature in database
GPG key ID: 67715DC5A329803C
7 changed files with 43 additions and 40 deletions

View file

@ -837,7 +837,8 @@ namespace Ryujinx.UI.App.Common
{ {
EnumerationOptions options = new() EnumerationOptions options = new()
{ {
RecurseSubdirectories = true, IgnoreInaccessible = false, RecurseSubdirectories = true,
IgnoreInaccessible = false,
}; };
IEnumerable<string> files = Directory.EnumerateFiles(appDir, "*", options).Where( IEnumerable<string> files = Directory.EnumerateFiles(appDir, "*", options).Where(
@ -943,7 +944,8 @@ namespace Ryujinx.UI.App.Common
{ {
EnumerationOptions options = new() EnumerationOptions options = new()
{ {
RecurseSubdirectories = true, IgnoreInaccessible = false, RecurseSubdirectories = true,
IgnoreInaccessible = false,
}; };
IEnumerable<string> files = Directory.EnumerateFiles(appDir, "*", options) IEnumerable<string> files = Directory.EnumerateFiles(appDir, "*", options)

View file

@ -175,7 +175,8 @@ namespace Ryujinx.Ava.UI.ViewModels
Dispatcher.UIThread.InvokeAsync(() => SelectedUpdate = titleUpdate); Dispatcher.UIThread.InvokeAsync(() => SelectedUpdate = titleUpdate);
} }
} }
} catch (Exception ex) }
catch (Exception ex)
{ {
Dispatcher.UIThread.InvokeAsync(() => ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.DialogLoadFileErrorMessage, ex.Message, path))); Dispatcher.UIThread.InvokeAsync(() => ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.DialogLoadFileErrorMessage, ex.Message, path)));
} }