mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-20 17:14:42 +01:00
changed ChapterImageResolution in model to enum type;
added 144p to the ImageResolution enum; updated chapters limit comment inside FFProbeVideoInfo.cs;
This commit is contained in:
@@ -666,7 +666,7 @@ namespace MediaBrowser.Providers.MediaInfo
|
||||
return Array.Empty<ChapterInfo>();
|
||||
}
|
||||
|
||||
// Limit to 100 chapters just in case there's some incorrect metadata here
|
||||
// Limit the chapters just in case there's some incorrect metadata here
|
||||
int chapterCount = (int)Math.Min(runtime / dummyChapterDuration, _config.Configuration.DummyChapterCount);
|
||||
var chapters = new ChapterInfo[chapterCount];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user