update nfo saving

pull/702/head
Luke Pulverenti 9 years ago
parent bb3e0414c7
commit f48e9ac232

@ -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; }
}
}

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

Loading…
Cancel
Save