Renamed LAME to libmp3lame. Ignore errors when parsing config.

This commit is contained in:
Grigory Chudov
2018-03-24 13:02:17 -04:00
parent e1f8906170
commit 13f260d80a
3 changed files with 8 additions and 4 deletions

View File

@@ -408,6 +408,10 @@ namespace CUETools.Processor
{
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate,
TypeNameHandling = TypeNameHandling.Auto,
Error = (sender, ev) => {
System.Diagnostics.Trace.WriteLine(ev.ErrorContext.Error.ToString());
ev.ErrorContext.Handled = true;
}
});
if (jsonObject as CUEConfigAdvanced == null)
throw new Exception();