Skip to content

Commit b76ce93

Browse files
Feat change comma string to char
1 parent 876eaa1 commit b76ce93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Umbraco.Cms.Integrations.Search.Algolia/Builders/ContentRecordBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public ContentRecordBuilder BuildFromContent(IContent content, Func<IProperty, b
4747

4848
_record.TemplateId = content.TemplateId.HasValue ? content.TemplateId.Value : -1;
4949
_record.Level = content.Level;
50-
_record.Path = content.Path.Split(",").ToList();
50+
_record.Path = content.Path.Split(',').ToList();
5151
_record.ContentTypeAlias = content.ContentType.Alias;
5252
_record.Url = _urlProvider.GetUrl(content.Id);
5353
_record.Data = new();

0 commit comments

Comments
 (0)