use SystemDirectories.Media instead of hardcoded string media

This commit is contained in:
Cody Boucher
2019-08-26 11:02:31 -04:00
committed by Sebastiaan Janssen
parent 198b74f4de
commit 2cdeb38521
@@ -1,6 +1,7 @@
using System; using System;
using System.Globalization; using System.Globalization;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using Umbraco.Core.IO;
using Umbraco.Core.Models; using Umbraco.Core.Models;
using Umbraco.Core.Models.Rdbms; using Umbraco.Core.Models.Rdbms;
@@ -130,7 +131,7 @@ namespace Umbraco.Core.Persistence.Factories
return nodeDto; return nodeDto;
} }
private static readonly Regex MediaPathPattern = new Regex(@"(/media/.+?)(?:['""]|$)", RegexOptions.Compiled); private static readonly Regex MediaPathPattern = new Regex($@"({SystemDirectories.Media.TrimStart("~")}/.+?)(?:['""]|$)", RegexOptions.Compiled);
/// <summary> /// <summary>
/// Try getting a media path out of the string being stored for media /// Try getting a media path out of the string being stored for media