edl integration work

This commit is contained in:
Sundog Jones 2024-09-17 09:31:20 -04:00
parent 1cd313b48a
commit 17848110cf
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@
thisRow.setAttribute("data-season", row['season']);
thisRow.setAttribute("data-episode-number", row['episode_number']);
thisRow.setAttribute("data-duration", row['duration_secs']);
if (row['edl_definition'] !== undefined) {
if (row['edl_definition'] !== null) {
console.log("EDL found:");
console.dir(row['edl_definition']);
const edl = JSON.parse(row['edl_definition']);