mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-01-12 07:23:23 -05:00
fix inverted cond in combining
This commit is contained in:
parent
1f7c4c184a
commit
eef18372cc
@ -71,7 +71,7 @@ export function combine(
|
||||
cur.height === vse.height &&
|
||||
cur.aspectWidth === vse.aspectWidth &&
|
||||
cur.aspectHeight === vse.aspectHeight &&
|
||||
(split90k === undefined || r.endTime90k - cur.startTime90k <= split90k)
|
||||
(split90k === undefined || cur.endTime90k - r.startTime90k <= split90k)
|
||||
) {
|
||||
cur.startId = r.startId;
|
||||
cur.firstUncommitted == r.firstUncommitted ?? cur.firstUncommitted;
|
||||
|
Loading…
Reference in New Issue
Block a user