mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
update nfo saving
This commit is contained in:
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…
Reference in New Issue
Block a user