Merge remote-tracking branch 'origin/v9/dev' into v9/dev

This commit is contained in:
Bjarke Berg
2021-09-20 12:59:22 +02:00
83 changed files with 259 additions and 178 deletions

View File

@@ -82,7 +82,7 @@ namespace Umbraco.Cms.Infrastructure.PublishedCache
var pos = route.IndexOf('/');
var path = pos == 0 ? route : route.Substring(pos);
var startNodeId = pos == 0 ? 0 : int.Parse(route.Substring(0, pos));
var startNodeId = pos == 0 ? 0 : int.Parse(route.Substring(0, pos), CultureInfo.InvariantCulture);
var parts = path.Split(Constants.CharArrays.ForwardSlash, StringSplitOptions.RemoveEmptyEntries);
IPublishedContent content;