change key used to generate chapter image file names

This commit is contained in:
Luke Pulverenti
2013-08-18 09:39:27 -04:00
parent b405b8f80b
commit 61c13e8f2c
7 changed files with 15 additions and 9 deletions

View File

@@ -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");