diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-07-23 18:29:53 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-07-23 18:29:53 -0400 |
| commit | dc7a59c73a1e163f122780bdd8a5ca6cad96eb06 (patch) | |
| tree | 50fadde432bffa3339d2477b6aa5bed3476d452e /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | e6b22f35e5c712081ee48e536868b15fc6491c19 (diff) | |
ensure custom css is loaded last
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index b4a3d89ea..6f8d62c0c 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -45,7 +45,6 @@ namespace MediaBrowser.Controller.Entities { ThemeSongIds = new List<Guid>(); ThemeVideoIds = new List<Guid>(); - Keywords = new List<string>(); Tags = new List<string>(); Genres = new List<string>(); Studios = new List<string>(); @@ -881,7 +880,6 @@ namespace MediaBrowser.Controller.Entities [IgnoreDataMember] public List<string> Tags { get; set; } - public List<string> Keywords { get; set; } public List<string> ProductionLocations { get; set; } /// <summary> @@ -2279,11 +2277,6 @@ namespace MediaBrowser.Controller.Entities newOptions.ForceSave = true; ownedItem.ProductionLocations = item.ProductionLocations.ToList(); } - if (!item.Keywords.SequenceEqual(ownedItem.Keywords, StringComparer.Ordinal)) - { - newOptions.ForceSave = true; - ownedItem.Keywords = item.Keywords.ToList(); - } if (item.CommunityRating != ownedItem.CommunityRating) { ownedItem.CommunityRating = item.CommunityRating; |
