Skip to content

Commit 7c4b165

Browse files
committed
#2293 fix mistake by adding variables to index
1 parent 0710752 commit 7c4b165

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/DDM/BExIS.Ddm.Providers.LuceneProvider/Indexer/BexisIndexer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ private void indexStructureDataStructcure(StructuredDataStructure sds, ref Docum
757757
foreach (string pDataValue in sdsStrings)
758758
// Loop through List with foreach
759759
{
760-
if (string.IsNullOrEmpty(pDataValue))
760+
if (!string.IsNullOrEmpty(pDataValue))
761761
{
762762
Field a = new Field("category_" + lucene_name, pDataValue,
763763
Lucene.Net.Documents.Field.Store.NO, toAnalyse);

0 commit comments

Comments
 (0)