Преглед изворни кода

Fixed app crash when CoreRepository shells are not initialised properly.

Frank van den Bos пре 9 месеци
родитељ
комит
22d53704c1
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      InABox.Mobile/InABox.Mobile.Shared/DataModels/Shell.cs

+ 3 - 3
InABox.Mobile/InABox.Mobile.Shared/DataModels/Shell.cs

@@ -119,9 +119,9 @@ namespace InABox.Mobile
 
             if (_row != null)
             {
-                var col = _columns.IndexOf(property);
-                var value = Row.Get<T>(col); //() Row.Values[];
-                return value;
+                var col = _columns?.IndexOf(property);
+                if (col != null)
+                    return Row.Get<T>(col.Value); //() Row.Values[];
             }
 
             return CoreUtils.GetDefault<T>();