mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2024-08-14 23:57:27 +00:00 
			
		
		
		
	Fix npe when there are no segments in a video.
This commit is contained in:
		
							parent
							
								
									b3c242d08b
								
							
						
					
					
						commit
						d3ef7e2b81
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -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…
	
	Add table
		Add a link
		
	
		Reference in a new issue