From d71d4887ef7d2c9443300b87ecc4754c40db565a Mon Sep 17 00:00:00 2001 From: arkadiuszbiel Date: Thu, 14 Nov 2019 08:50:50 +0000 Subject: [PATCH] fix for a build --- .../Indexers/ElasticSearchBaseIndex.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Novicell.Examine.ElasticSearch/Indexers/ElasticSearchBaseIndex.cs b/source/Novicell.Examine.ElasticSearch/Indexers/ElasticSearchBaseIndex.cs index dbaeee2..cd01dc5 100644 --- a/source/Novicell.Examine.ElasticSearch/Indexers/ElasticSearchBaseIndex.cs +++ b/source/Novicell.Examine.ElasticSearch/Indexers/ElasticSearchBaseIndex.cs @@ -267,7 +267,7 @@ private BulkDescriptor ToElasticSearchDocs(IEnumerable docs, string in protected override void PerformIndexItems(IEnumerable op, Action onComplete) { - if (!IndexExists() && !TempIndexExists()) + if (!IndexExists() && !TempIndexExists() && _isUmbraco) { return; }