Fixes U4-11584 RelatedLinks2 throws exception with null value in Link field
This commit is contained in:
@@ -116,7 +116,7 @@ namespace Umbraco.Web.PropertyEditors.ValueConverters
|
||||
{
|
||||
var strLinkId = linkData.Link;
|
||||
var udiAttempt = strLinkId.TryConvertTo<Udi>();
|
||||
if (udiAttempt.Success)
|
||||
if (udiAttempt.Success && udiAttempt.Result != null)
|
||||
{
|
||||
var content = helper.TypedContent(udiAttempt.Result);
|
||||
if (content != null)
|
||||
@@ -168,4 +168,4 @@ namespace Umbraco.Web.PropertyEditors.ValueConverters
|
||||
return link;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user