mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-18 20:24:20 +01:00
change key used to generate chapter image file names
This commit is contained in:
@@ -27,7 +27,7 @@ namespace MediaBrowser.Controller.Entities.TV
|
||||
{
|
||||
get
|
||||
{
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -131,7 +131,7 @@ namespace MediaBrowser.Controller.MediaInfo
|
||||
break;
|
||||
}
|
||||
|
||||
var filename = video.Id + "_" + video.DateModified.Ticks + "_" + chapter.StartPositionTicks;
|
||||
var filename = video.Path + "_" + video.DateModified.Ticks + "_" + chapter.StartPositionTicks;
|
||||
|
||||
var path = VideoImageCache.GetResourcePath(filename, ".jpg");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user