This commit is contained in:
legop3
2026-04-28 02:48:49 -04:00
parent 16ae430090
commit c4a80202fc
+5 -1
View File
@@ -429,7 +429,11 @@ async function buildReplayVideo({ sources = [] } = {}) {
for (let i = 0; i < sources.length; i += 1) { for (let i = 0; i < sources.length; i += 1) {
const source = sources[i]; const source = sources[i];
const sourceId = String(source.id); const sourceId = String(source.id);
const videoEntries = overlapping(getVideoEntriesForSource({ id: sourceId }), tStart, tEnd); const videoEntries = overlapping(
getVideoEntriesForSource({ type: String(source.type), id: sourceId }),
tStart,
tEnd,
);
if (!videoEntries.length) { if (!videoEntries.length) {
missingSources.push({ ...source, reason: 'no video coverage in replay window' }); missingSources.push({ ...source, reason: 'no video coverage in replay window' });
continue; continue;