dashcam 1.3.29 → 1.3.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/dashcam.js +4 -6
  2. package/package.json +1 -1
package/bin/dashcam.js CHANGED
@@ -504,16 +504,14 @@ program
504
504
  logger.warn('Temp file not found, using output path directly', { tempFile });
505
505
  }
506
506
 
507
- // Collect application and log data
508
- const apps = await applicationTracker.getApps(activeStatus.startTime);
509
- const logs = await logsTrackerManager.getLogsForRecording();
510
-
507
+ // We killed the process, so we don't have apps/logs data
508
+ // The recording is still on disk and can be uploaded without metadata
511
509
  const recordingResult = {
512
510
  outputPath,
513
511
  duration: result.duration,
514
512
  clientStartDate: activeStatus.startTime,
515
- apps,
516
- logs,
513
+ apps: [],
514
+ logs: [],
517
515
  title: activeStatus?.options?.title,
518
516
  description: activeStatus?.options?.description,
519
517
  project: activeStatus?.options?.project
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dashcam",
3
- "version": "1.3.29",
3
+ "version": "1.3.30",
4
4
  "description": "Minimal CLI version of Dashcam desktop app",
5
5
  "main": "bin/dashcam.js",
6
6
  "bin": {