diff options
| author | Anthony Lavado <anthonylavado@me.com> | 2020-04-20 02:27:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-20 02:27:02 -0400 |
| commit | 5c4326daf4ee238c5ad235ef2abe62d6bbb6d076 (patch) | |
| tree | c243a13a74514603f0415d14212bcd65d82c52cf | |
| parent | 2d369ca614a81209deb701699a6a985806c65336 (diff) | |
Revert "Fix eTags DateLastSaved"
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index b507fa6e4..3e24abc49 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -549,7 +549,8 @@ namespace MediaBrowser.Controller.Entities /// <value>The date modified.</value> [JsonIgnore] public DateTime DateModified { get; set; } - + + [JsonIgnore] public DateTime DateLastSaved { get; set; } [JsonIgnore] |
