Browse Source

Added Exception Handling for malformed Linked Properties

frogsoftware 1 year ago
parent
commit
65652be0e9
1 changed files with 3 additions and 2 deletions
  1. 3 2
      InABox.Core/BaseObject.cs

+ 3 - 2
InABox.Core/BaseObject.cs

@@ -120,10 +120,11 @@ namespace InABox.Core
 
                     PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
                 }
-                finally
+                catch (Exception e)
                 {
-                    bApplyingChanges = false;
+                    
                 }
+                bApplyingChanges = false;
             }
         }