Add some new screenshots.

This commit is contained in:
Dermot Duffy
2022-06-04 11:31:27 -07:00
parent 2edb381f4d
commit a02ec12958
5 changed files with 22 additions and 2 deletions
+4 -2
View File
@@ -583,9 +583,11 @@ export class FrigateCardTimelineCore extends LitElement {
const children: FrigateBrowseMediaSource[] = [];
const processedCameras: Set<string> = new Set();
for (const [camera, recording] of results.entries()) {
// Get results in the order the cameras are specified in the configuration.
for (const camera of (this.cameras?.keys() || [])) {
const recording = results.get(camera);
const config = this.cameras?.get(camera);
if (!config?.camera_name) {
if (!recording || !config?.camera_name) {
continue;
}