remove conversion

This commit is contained in:
Torben Haack 2024-11-06 09:13:56 +01:00
parent e286fe89b3
commit 2b92bbf9f5
No known key found for this signature in database

View File

@ -49,7 +49,7 @@ export default async function AdminPage() {
const currentPrintJobs = printJobs.filter((job) => {
if (job.aborted) return false;
const endAt = new Date(job.startAt).getTime() + job.durationInMinutes * 1000 * 60;
const endAt = job.startAt.getTime() + job.durationInMinutes * 1000 * 60;
return endAt > currentDate.getTime();
});