diff options
Diffstat (limited to 'modules/utilities/cards')
| -rw-r--r-- | modules/utilities/cards/RecordingList.qml | 1 |
1 files changed, 1 insertions, 0 deletions
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 |