From 54bb1bb45108158ef8efd12cbda93e6f37d7afb0 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Tue, 26 Sep 2023 16:51:37 +0200 Subject: [PATCH] first pass of overwrite and distinct --- Global_Indexer/frmIndex.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Global_Indexer/frmIndex.vb b/Global_Indexer/frmIndex.vb index ba395ca..40c0a9a 100644 --- a/Global_Indexer/frmIndex.vb +++ b/Global_Indexer/frmIndex.vb @@ -863,11 +863,11 @@ Public Class frmIndex End If If oOverwrite = False Then - oListofString = oExistingItems.Concat(oListofString) + oListofString = oExistingItems.Concat(oListofString).ToList() End If If oPreventMultipleValues = True Then - oListofString = oListofString.Distinct() + oListofString = oListofString.Distinct().ToList() End If indexierung_erfolgreich = WINDREAM.SetFileIndex(CURRENT_NEWFILENAME, oIndexName, oListofString, CURR_DOKART_OBJECTTYPE)