first pass of overwrite and distinct

This commit is contained in:
Jonathan Jenne 2023-09-26 16:51:37 +02:00
parent 2eeb773cf8
commit 54bb1bb451

View File

@ -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)