aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Dto/DtoService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-03 14:02:23 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-03 14:02:23 -0400
commit16b9d26ab5e52c3c72dd24f17587ca4775ff79dd (patch)
tree4b6ef5582845768caf54144f3372ed603da90b1f /MediaBrowser.Server.Implementations/Dto/DtoService.cs
parentd021e20249c85ab96783e1347d95f826a816ff9b (diff)
fixes #273 - Marking/unmarking Favorite status doesn't cause a library changed notification
Diffstat (limited to 'MediaBrowser.Server.Implementations/Dto/DtoService.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Dto/DtoService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
index 00808ad33..3c3e01151 100644
--- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs
+++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
@@ -340,7 +340,8 @@ namespace MediaBrowser.Server.Implementations.Dto
PlayCount = data.PlayCount,
Rating = data.Rating,
Played = data.Played,
- LastPlayedDate = data.LastPlayedDate
+ LastPlayedDate = data.LastPlayedDate,
+ Key = data.Key
};
}
private void SetBookProperties(BaseItemDto dto, Book item)