Temp commit

This commit is contained in:
Bjarke Berg
2021-09-14 22:13:39 +02:00
parent 8d58e31bcf
commit f68717c1c8
35 changed files with 123 additions and 74 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;