fix(KBService): remove unnecessary skip variable in file processing logic
All checks were successful
GBCI / build (push) Successful in 50s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-05-13 23:10:42 -03:00
parent 4c28404578
commit 8d83dc214a

View file

@ -1223,7 +1223,6 @@ export class KBService implements IGBKBService {
await CollectionUtil.asyncForEach(files, async file => { await CollectionUtil.asyncForEach(files, async file => {
let content = null; let content = null;
let filePath = path.join(file.root, file.name); let filePath = path.join(file.root, file.name);
let skip = false;
try { try {
if (file.name.endsWith('.csv') || file.name.endsWith('.md') if (file.name.endsWith('.csv') || file.name.endsWith('.md')
@ -1233,7 +1232,6 @@ export class KBService implements IGBKBService {
) { ) {
if (file.name.endsWith('.csv')) { if (file.name.endsWith('.csv')) {
skip = false;
// Read first 1000 lines of CSV file // Read first 1000 lines of CSV file
const csvContent = await fs.readFile(filePath, 'utf8'); const csvContent = await fs.readFile(filePath, 'utf8');
const lines = csvContent.split('\n').slice(0, 200).join('\n'); const lines = csvContent.split('\n').slice(0, 200).join('\n');