Bugfix: For searches only use the search index cache

This commit is contained in:
Herbert Reiter
2020-10-11 18:52:15 +02:00
parent 2a16dbefb8
commit 7abb1788b6
@@ -57,7 +57,7 @@ public class WikiEngineApplication extends Application {
RepositoryService repositoryService = new FilesystemRepositoryService(logger, internalStorageRepositoryRoot);
repositoryService.init();
WikiService wikiService = new WikiServiceImpl(logger, repositoryService);
SearchService searchService = new SearchService(logger, repositoryService, wikiService);
SearchService searchService = new SearchService(logger, repositoryService, wikiService, true);
Settings settings = new AndroidSettings(logger, repositoryService, AndroidSettings.getConfigFileApp());
Messages messages = new Messages(logger, settings, repositoryService);
PluginService pluginService = new PluginService(logger, settings);