improve identify feature

This commit is contained in:
Luke Pulverenti
2016-04-05 22:18:56 -04:00
parent d5396828fb
commit 1cea5bcbd8
6 changed files with 43 additions and 21 deletions

View File

@@ -1,5 +1,6 @@
using System.Linq;
using CommonIO;
using MediaBrowser.Model.Providers;
namespace MediaBrowser.Controller.Providers
{
@@ -13,6 +14,7 @@ namespace MediaBrowser.Controller.Providers
public bool IsPostRecursiveRefresh { get; set; }
public MetadataRefreshMode MetadataRefreshMode { get; set; }
public RemoteSearchResult SearchResult { get; set; }
public bool ForceSave { get; set; }
@@ -37,6 +39,7 @@ namespace MediaBrowser.Controller.Providers
ImageRefreshMode = copy.ImageRefreshMode;
ReplaceAllImages = copy.ReplaceAllImages;
ReplaceImages = copy.ReplaceImages.ToList();
SearchResult = copy.SearchResult;
}
}
}