Skip to content

Commit

Permalink
www: don't select event.mp4 as the most recent one
Browse files Browse the repository at this point in the history
  • Loading branch information
marcone committed Jul 1, 2024
1 parent b1994c4 commit 03f4f60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teslausb-www/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2549,7 +2549,7 @@
sequence=new VideoSequence(group, sequencename);
videos[group][sequencename]=sequence;
}
if (filename.includes(".mp4")) {
if (filename != "event.mp4" && filename.includes(".mp4")) {
videotime=filename.substring(0, 19);
segment=sequence.getSegmentByName(videotime);
segment.addVideo(filename);
Expand Down

0 comments on commit 03f4f60

Please sign in to comment.