Fixing 'onDeleteFileSet' calling deIndex (before was index..)

This commit is contained in:
Francesco Mangiacrapa 2023-04-04 16:59:13 +02:00
parent a65c4a86da
commit 261d8f31c8
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class Default3PhaseManager extends SimpleLifeCycleManager implements Life
parameters = getPublicIndexParams(theReport.getTheRequest());
if(parameters!= null)
for(IndexerPluginInterface indexer : getIndexers(theReport.getTheRequest()))
theReport = index(theReport,indexer,getPublicIndexParams(theReport.getTheRequest()));
theReport = deIndex(theReport,indexer,getPublicIndexParams(theReport.getTheRequest()));
return theReport;
}