We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var obj = serializer.Deserialize(reader);
obj becomes null and following throws exception var contentTypeAlias = obj.GetValue(_aliasProperty).Value();
possible solution after var obj = serializer.Deserialize(reader); put this if(obj == null) return null;
The text was updated successfully, but these errors were encountered:
To replicate create a model with: public Media SomeImage { get; set; }
Leave it empty in umbraco heartcore and try to retreive it. It will throw an exception. This was not the case earlier.
Sorry, something went wrong.
No branches or pull requests
var obj = serializer.Deserialize(reader);
obj becomes null and following throws exception
var contentTypeAlias = obj.GetValue(_aliasProperty).Value();
possible solution
after
var obj = serializer.Deserialize(reader);
put this
if(obj == null) return null;
The text was updated successfully, but these errors were encountered: