Skip to content

Commit

Permalink
fix(server/vehicle): vin generation timestamp (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
CeebDev authored Mar 6, 2024
1 parent e2780e9 commit 7492d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/vehicle/class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class OxVehicle extends ClassInterface {
vehicle.model.slice(0, 2).toUpperCase(),
null,
null,
+Date() / 1000,
Math.floor(Date.now() / 1000),
];

while (true) {
Expand Down

0 comments on commit 7492d78

Please sign in to comment.