diff --git a/src/Umbraco.Web/PropertyEditors/FileUploadPropertyEditor.cs b/src/Umbraco.Web/PropertyEditors/FileUploadPropertyEditor.cs index 1d7ff870c0..eca53f51f3 100644 --- a/src/Umbraco.Web/PropertyEditors/FileUploadPropertyEditor.cs +++ b/src/Umbraco.Web/PropertyEditors/FileUploadPropertyEditor.cs @@ -80,8 +80,8 @@ namespace Umbraco.Web.PropertyEditors //there might be multiple, we can only process the first one! var split = ((string) p.Value).Split(new[] {','}, StringSplitOptions.RemoveEmptyEntries); if (split.Any()) - { - var fullPath = mediaFileSystem.GetRelativePath(split[0]); + { + var fullPath = mediaFileSystem.GetFullPath(mediaFileSystem.GetRelativePath(split[0])); var umbracoFile = new UmbracoMediaFile(fullPath); FillProperties(uploadFieldConfigNode, model, umbracoFile); }