change IList to List for consistency with rest of framework

This commit is contained in:
sbwalker
2024-06-10 17:17:20 -04:00
parent 59fed7dda8
commit 8ce07ced9e
3 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ namespace Oqtane.Managers.Search
try
{
var moduleSearch = (ISearchable)ActivatorUtilities.CreateInstance(_serviceProvider, type);
var contentList = moduleSearch.GetSearchContent(module, startTime.GetValueOrDefault(DateTime.MinValue));
var contentList = moduleSearch.GetSearchContents(module, startTime.GetValueOrDefault(DateTime.MinValue));
if(contentList != null)
{
foreach(var searchContent in contentList)