diff --git a/backend/src/services/recording.service.ts b/backend/src/services/recording.service.ts index 7cf3788..f65a76c 100644 --- a/backend/src/services/recording.service.ts +++ b/backend/src/services/recording.service.ts @@ -267,7 +267,7 @@ export class RecordingService { const promises: Promise[] = []; // Retrieve the metadata for each recording Contents.forEach((item) => { - if (item?.Key && item.Key.endsWith('.json')) { + if (item?.Key && item.Key.endsWith('.json') && !item.Key.endsWith('secrets.json')) { promises.push(this.s3Service.getObjectAsJson(item.Key) as Promise); } });