Skip to content

Commit

Permalink
fix: re-add noDate option
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Dec 25, 2023
1 parent c13e53e commit 9be56b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webvsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function convertPreset(data: Buffer | ArrayBuffer, presetName: string, pr

return {
name: presetName,
date: presetDate ? presetDate.toISOString() : undefined,
date: args.noDate ? undefined : presetDate?.toISOString(),
clearFrame: decode.presetHeader(blob8.subarray(0, config.presetHeaderLength)),
components: Util.convertComponents(blob8.subarray(config.presetHeaderLength))
};
Expand Down

0 comments on commit 9be56b5

Please sign in to comment.