Fixes U4-11584 RelatedLinks2 throws exception with null value in Link field

This commit is contained in:
Sebastiaan Janssen
2018-08-24 11:08:27 +02:00
parent d83bb6aa49
commit e1f7e835ea

View File

@@ -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;
}
}
}
}