update nfo saving

This commit is contained in:
Luke Pulverenti 2015-10-08 12:22:14 -04:00
parent bb3e0414c7
commit f48e9ac232
2 changed files with 3 additions and 1 deletions

View File

@ -19,6 +19,7 @@ namespace MediaBrowser.Controller.Providers
if (video != null)
{
VideoType = video.VideoType;
IsPlaceHolder = video.IsPlaceHolder;
}
}
@ -26,5 +27,6 @@ namespace MediaBrowser.Controller.Providers
public string ContainingFolderPath { get; set; }
public VideoType VideoType { get; set; }
public bool IsInMixedFolder { get; set; }
public bool IsPlaceHolder { get; set; }
}
}

View File

@ -30,7 +30,7 @@ namespace MediaBrowser.XbmcMetadata.Savers
{
var list = new List<string>();
if (item.VideoType == VideoType.Dvd)
if (item.VideoType == VideoType.Dvd && !item.IsPlaceHolder)
{
var path = item.ContainingFolderPath;