diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-04-19 17:50:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-19 17:50:50 -0400 |
| commit | 2d369ca614a81209deb701699a6a985806c65336 (patch) | |
| tree | 2770adf7e3167e282934981ce661f49d0503adac | |
| parent | 0c204f47064245a841740d16255147cff678c2e8 (diff) | |
| parent | 3c050793330bdcafec2a08b6224a83fa29787443 (diff) | |
Merge pull request #2928 from anthonylavado/fix-etags
Fix eTags DateLastSaved
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 3e24abc49..b507fa6e4 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -549,8 +549,7 @@ namespace MediaBrowser.Controller.Entities /// <value>The date modified.</value> [JsonIgnore] public DateTime DateModified { get; set; } - - [JsonIgnore] + public DateTime DateLastSaved { get; set; } [JsonIgnore] |
