mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	Fix:Merging chapters from multiple files skipping chapters #857
This commit is contained in:
		
							parent
							
								
									8416f2d6be
								
							
						
					
					
						commit
						21e1f62c65
					
				| @ -420,10 +420,10 @@ class Book { | ||||
|         // If audio file has chapters use chapters
 | ||||
|         if (file.chapters && file.chapters.length) { | ||||
|           file.chapters.forEach((chapter) => { | ||||
|             if (chapter.start > this.duration) { | ||||
|             if (currStartTime > this.duration) { | ||||
|               Logger.warn(`[Book] Invalid chapter start time > duration`) | ||||
|             } else { | ||||
|               var chapterAlreadyExists = this.chapters.find(ch => ch.start === chapter.start) | ||||
|               var chapterAlreadyExists = this.chapters.find(ch => ch.start === currStartTime) | ||||
|               if (!chapterAlreadyExists) { | ||||
|                 var chapterDuration = chapter.end - chapter.start | ||||
|                 if (chapterDuration > 0) { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user