diff --git a/src/Umbraco.Core/Services/ContentServiceExtensions.cs b/src/Umbraco.Core/Services/ContentServiceExtensions.cs index 893a3eeaf5..cac93c2426 100644 --- a/src/Umbraco.Core/Services/ContentServiceExtensions.cs +++ b/src/Umbraco.Core/Services/ContentServiceExtensions.cs @@ -19,7 +19,7 @@ public static class ContentServiceExtensions private static readonly Regex AnchorRegex = new(@"", RegexOptions.Compiled); private static readonly string[] _propertyTypesWithRte = new[] { Constants.PropertyEditors.Aliases.RichText, Constants.PropertyEditors.Aliases.BlockList, Constants.PropertyEditors.Aliases.BlockGrid }; - public static IEnumerable? GetByIds(this IContentService contentService, IEnumerable ids) + public static IEnumerable GetByIds(this IContentService contentService, IEnumerable ids) { var guids = new List(); foreach (Udi udi in ids)