From cd5615c6ce4c4de44f7c9118d2ca0454fadd0868 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 11 Sep 2015 12:26:06 -0400 Subject: update client sync --- MediaBrowser.Controller/Entities/BaseItem.cs | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) (limited to 'MediaBrowser.Controller/Entities') diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 6d0a270da6..54267490df 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -332,25 +332,8 @@ namespace MediaBrowser.Controller.Entities return Name; } - /// - /// Returns true if this item should not attempt to fetch metadata - /// - /// true if [dont fetch meta]; otherwise, false. - [Obsolete("Please use IsLocked instead of DontFetchMeta")] - public bool DontFetchMeta { get; set; } - [IgnoreDataMember] - public bool IsLocked - { - get - { - return DontFetchMeta; - } - set - { - DontFetchMeta = value; - } - } + public bool IsLocked { get; set; } public bool IsUnidentified { get; set; } @@ -580,6 +563,7 @@ namespace MediaBrowser.Controller.Entities /// Gets or sets the custom rating. /// /// The custom rating. + [IgnoreDataMember] public string CustomRating { get; set; } /// @@ -610,6 +594,7 @@ namespace MediaBrowser.Controller.Entities /// Gets or sets the community rating. /// /// The community rating. + [IgnoreDataMember] public float? CommunityRating { get; set; } /// @@ -635,6 +620,7 @@ namespace MediaBrowser.Controller.Entities /// This could be episode number, album track number, etc. /// /// The index number. + [IgnoreDataMember] public int? IndexNumber { get; set; } /// -- cgit v1.2.3