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.
- package/bin/dashcam.js +4 -6
- 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
|
-
//
|
|
508
|
-
|
|
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
|