mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-22 21:47:25 +00:00
Fix npe when there are no segments in a video.
This commit is contained in:
parent
b3c242d08b
commit
d3ef7e2b81
@ -383,7 +383,7 @@ export default {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const minSegmentLength = Math.max(this.getPreferenceNumber("minSegmentLength", 0), 0);
|
const minSegmentLength = Math.max(this.getPreferenceNumber("minSegmentLength", 0), 0);
|
||||||
sponsors.segments = sponsors.segments.filter(segment => {
|
sponsors.segments = sponsors.segments?.filter(segment => {
|
||||||
const length = segment.segment[1] - segment.segment[0];
|
const length = segment.segment[1] - segment.segment[0];
|
||||||
return length >= minSegmentLength;
|
return length >= minSegmentLength;
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user