Skip to content

Commit

Permalink
fix missing upload action
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-hykin committed Jan 17, 2025
1 parent ab5b5ba commit 035fd37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tooling/timestamp_tooling.js
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ export class InvalidFormatError extends Error {
export function timestampsToCsv(entries) {
const timestamps = []
for (const each of entries) {
const outputTimestamp = (new Timestamp(each)).toJSON()
const outputTimestamp = {uploadAction: "update", ...(new Timestamp(each)).toJSON()}
timestamps.push(outputTimestamp)
// NOTE: there is no video key
// // flatten out video
Expand Down

0 comments on commit 035fd37

Please sign in to comment.