Include metadata from recordings.

This commit is contained in:
Dermot Duffy
2023-01-29 11:26:48 -08:00
parent 1ad600c231
commit 5fb2a9d3ed
4 changed files with 44 additions and 9 deletions
+1 -1
View File
@@ -257,7 +257,7 @@ export class MediaMetadataController implements ReactiveController {
if (metadata.days) {
const yearMonths: Set<string> = new Set();
[...metadata.days].forEach((day) => {
// An efficient conversion: 2023-01-26 -> 2023-01
// An efficient conversion: "2023-01-26" -> "2023-01"
yearMonths.add(day.substring(0, 7));
});
const monthStarts: Date[] = [];