@@ -28,7 +28,7 @@ namespace Umbraco.Core.PropertyEditors.ValueConverters
|
||||
// </values>
|
||||
// </keyFeatureList>
|
||||
|
||||
var sourceString = source.ToString();
|
||||
var sourceString = source != null ? source.ToString() : null;
|
||||
if (string.IsNullOrWhiteSpace(sourceString)) return Enumerable.Empty<string>();
|
||||
|
||||
//SD: I have no idea why this logic is here, I'm pretty sure we've never saved the multiple txt string
|
||||
|
||||
Reference in New Issue
Block a user