diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-28 23:13:44 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-28 23:13:44 -0500 |
| commit | e5513223470aaadf2e7526f591a4de09cd1c3060 (patch) | |
| tree | bda0600c26b291d2db361044db178b11404f7ffb /MediaBrowser.Server.Implementations | |
| parent | c2e51df31df8b112fe2750ce02a4dd210fccf937 (diff) | |
switch providers to use CachePath for storage
Diffstat (limited to 'MediaBrowser.Server.Implementations')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Dto/DtoService.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs index fee80c317..1174f16ae 100644 --- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs +++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs @@ -664,6 +664,7 @@ namespace MediaBrowser.Server.Implementations.Dto } dto.DisplayMediaType = item.DisplayMediaType; + dto.IsUnidentified = item.IsUnidentified; if (fields.Contains(ItemFields.Settings)) { @@ -1092,6 +1093,8 @@ namespace MediaBrowser.Server.Implementations.Dto { dto.DisplaySpecialsWithSeasons = series.DisplaySpecialsWithSeasons; } + + dto.AnimeSeriesIndex = series.AnimeSeriesIndex; } if (episode != null) |
