diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-07-24 12:46:17 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-07-24 12:46:17 -0400 |
| commit | eb321dad3bf6f67c291d9f4857a6bfabc6586891 (patch) | |
| tree | 29480b32682f6b238d127bf2a5db49790714bd9e /MediaBrowser.Controller/Entities/Book.cs | |
| parent | 98bb84e82a77685f105c9e10588c30ee65e1fd68 (diff) | |
fix DateModified not refreshing
Diffstat (limited to 'MediaBrowser.Controller/Entities/Book.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Book.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Book.cs b/MediaBrowser.Controller/Entities/Book.cs index 2ca56bc70..59ab95437 100644 --- a/MediaBrowser.Controller/Entities/Book.cs +++ b/MediaBrowser.Controller/Entities/Book.cs @@ -34,6 +34,12 @@ namespace MediaBrowser.Controller.Entities return SeriesName; } + [IgnoreDataMember] + public override bool EnableForceSaveOnDateModifiedChange + { + get { return true; } + } + public Guid? FindSeriesId() { return SeriesId; |
