diff --git a/src/Umbraco.Web/Editors/BackOfficeController.cs b/src/Umbraco.Web/Editors/BackOfficeController.cs index d0da347081..7a427c2649 100644 --- a/src/Umbraco.Web/Editors/BackOfficeController.cs +++ b/src/Umbraco.Web/Editors/BackOfficeController.cs @@ -475,7 +475,7 @@ namespace Umbraco.Web.Editors if (isValid) { //it is a valid URL add to Url list - urlList.Add(IOHelper.ResolveUrl(jsFile)); + urlList.Add(jsFile.StartsWith("~/") ? IOHelper.ResolveUrl(jsFile) : jsFile); } } else