Handle parsing of corrupt Config.json and prevent crash on launch (#4309)

* Handle parsing of corrupt Config.json and prevent crash on launch

* Implement a cleaner solution to handle empty json object
This commit is contained in:
gnisman 2023-01-22 18:04:33 +02:00 committed by Matt Heins
parent 646e20feab
commit e093204e3c

View file

@ -340,7 +340,7 @@ namespace Ryujinx.Ui.Common.Configuration
{
configurationFileFormat = JsonHelper.DeserializeFromFile<ConfigurationFileFormat>(path);
return true;
return configurationFileFormat.Version != 0;
}
catch
{