Troubleshooting

This commit is contained in:
Stephan
2018-02-27 16:13:23 +01:00
parent 1f60314348
commit a39511bf55
3 changed files with 15 additions and 15 deletions

View File

@@ -115,7 +115,7 @@ namespace Umbraco.Web.PropertyEditors
{
// convert the value, and store the converted value
var propEditor = _propertyEditors[propType.PropertyEditorAlias];
var convValue = propEditor.ValueEditor.ConvertDbToString(propType, propValues[propAlias], dataTypeService);
var convValue = propEditor.ValueEditor.ConvertDbToString(propType, propValues[propAlias]?.ToString(), dataTypeService);
propValues[propAlias] = convValue;
}
catch (InvalidOperationException)