From 40f98fb0592bfca0eaa26acfc48127d30e2c0908 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 13 Oct 2025 23:43:56 +1100 Subject: utilities/record: fix recording list months Fixes #782 --- modules/utilities/cards/RecordingList.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/utilities/cards/RecordingList.qml b/modules/utilities/cards/RecordingList.qml index ab7537e..5d71328 100644 --- a/modules/utilities/cards/RecordingList.qml +++ b/modules/utilities/cards/RecordingList.qml @@ -92,6 +92,7 @@ ColumnLayout { if (!matches) return time; const date = new Date(...matches.slice(1)); + date.setMonth(date.getMonth() - 1); // Woe (months start from 0) return qsTr("Recording at %1").arg(Qt.formatDateTime(date, Qt.locale())); } color: Colours.palette.m3onSurfaceVariant -- cgit v1.2.3-freya