From b5428060cf55f1e1c8575a72de863e5b6f667406 Mon Sep 17 00:00:00 2001 From: matthias Date: Mon, 21 Aug 2023 06:23:51 +0200 Subject: [PATCH] Change startMinutes to startHours (#1127) --- web/ts/video-sections.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/ts/video-sections.ts b/web/ts/video-sections.ts index d06d8045d..7d73601e3 100644 --- a/web/ts/video-sections.ts +++ b/web/ts/video-sections.ts @@ -81,7 +81,7 @@ export class VideoSectionsAdminController { return ( this.current.description !== "" && this.current.startHours !== null && - this.current.startMinutes < 32 && + this.current.startHours < 32 && this.current.startMinutes !== null && this.current.startMinutes < 60 && this.current.startSeconds !== null &&