aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-18 09:39:27 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-18 09:39:27 -0400
commit61c13e8f2c1e9ae3cabb7e8683279823423cbbab (patch)
treea22279bf7593fb78fc10a67b92d391c0acc48ff4 /MediaBrowser.Controller
parentb405b8f80bc7bd60c30579facfd29727e32d062a (diff)
change key used to generate chapter image file names
Diffstat (limited to 'MediaBrowser.Controller')
-rw-r--r--MediaBrowser.Controller/Entities/TV/Episode.cs2
-rw-r--r--MediaBrowser.Controller/MediaInfo/FFMpegManager.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Episode.cs b/MediaBrowser.Controller/Entities/TV/Episode.cs
index 9a2acc1081..c6c426a680 100644
--- a/MediaBrowser.Controller/Entities/TV/Episode.cs
+++ b/MediaBrowser.Controller/Entities/TV/Episode.cs
@@ -27,7 +27,7 @@ namespace MediaBrowser.Controller.Entities.TV
{
get
{
- return true;
+ return false;
}
}
diff --git a/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs b/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs
index f402cec203..1cb43b43a9 100644
--- a/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs
+++ b/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs
@@ -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");