mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 23:35:25 +03:00
updated ffmpeg
This commit is contained in:
@@ -145,12 +145,18 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||
{
|
||||
if (reader.Read())
|
||||
{
|
||||
return new ChapterInfo
|
||||
var chapter = new ChapterInfo
|
||||
{
|
||||
StartPositionTicks = reader.GetInt64(0),
|
||||
Name = reader.GetString(1),
|
||||
ImagePath = reader.GetString(2)
|
||||
Name = reader.GetString(1)
|
||||
};
|
||||
|
||||
if (!reader.IsDBNull(2))
|
||||
{
|
||||
chapter.ImagePath = reader.GetString(2);
|
||||
}
|
||||
|
||||
return chapter;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user