case 3740

This commit is contained in:
2020-04-02 17:17:48 +00:00
parent d3da5e5bf4
commit 35b14f27ba
5 changed files with 90 additions and 36 deletions

View File

@@ -5512,7 +5512,13 @@ namespace AyaNova
{
new MyApp().Run(args);
}
catch (System.NullReferenceException )
catch (System.NullReferenceException)
{
;//no operation, this was found to be happening when an old db is updated to a new db, maybe
//an attempt to show something that doesn't exist yet in db or...?
//it's so obscure I'm just going to swallow it here (but only that specific one)
}
catch (System.ObjectDisposedException)
{
;//no operation, this was found to be happening when an old db is updated to a new db, maybe
//an attempt to show something that doesn't exist yet in db or...?