diff --git a/src/util/general.ts b/src/util/general.ts index f1eee03..790a803 100644 --- a/src/util/general.ts +++ b/src/util/general.ts @@ -32,7 +32,7 @@ export function calculateSecondsBetween( start: number, end: number, ): { seconds: number; toReadable: (roundToMinutes?: boolean) => string } { - const seconds = (end - start) / 1000; + const seconds = Math.max(60, (end - start) / 1000); return { seconds, toReadable: (roundToMinutes?: boolean) =>