fix video images not being created

This commit is contained in:
Luke Pulverenti
2017-08-26 15:50:02 -04:00
parent 6147491a8a
commit 749a181fac
4 changed files with 21 additions and 2 deletions

View File

@@ -161,7 +161,10 @@ namespace MediaBrowser.Controller.Entities
{
videoType = VideoType.Dvd;
}
else
{
return new string[] { };
}
return MediaEncoder.GetPlayableStreamFileNames(Path, videoType);
}
@@ -265,6 +268,12 @@ namespace MediaBrowser.Controller.Entities
return base.CanDelete();
}
[IgnoreDataMember]
public bool IsCompleteMedia
{
get { return !IsActiveRecording(); }
}
[IgnoreDataMember]
protected virtual bool EnableDefaultVideoUserDataKeys
{