Merge pull request #7253 from bielu/v8/bugfix/contentpopulators

8.4RC: MediaIndexPopulator should use IUmbracoContentIndex instead of Umbrac…
This commit is contained in:
Shannon Deminick
2019-12-04 10:56:36 +11:00
committed by GitHub

View File

@@ -10,7 +10,7 @@ namespace Umbraco.Examine
/// <summary>
/// Performs the data lookups required to rebuild a media index
/// </summary>
public class MediaIndexPopulator : IndexPopulator<UmbracoContentIndex>
public class MediaIndexPopulator : IndexPopulator<IUmbracoContentIndex>
{
private readonly int? _parentId;
private readonly IMediaService _mediaService;
@@ -69,6 +69,6 @@ namespace Umbraco.Examine
pageIndex++;
} while (media.Length == pageSize);
}
}
}