aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/UserLibrary/PlaystateService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Api/UserLibrary/PlaystateService.cs')
-rw-r--r--MediaBrowser.Api/UserLibrary/PlaystateService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Api/UserLibrary/PlaystateService.cs b/MediaBrowser.Api/UserLibrary/PlaystateService.cs
index 874d2bfa1..932ce77d3 100644
--- a/MediaBrowser.Api/UserLibrary/PlaystateService.cs
+++ b/MediaBrowser.Api/UserLibrary/PlaystateService.cs
@@ -375,11 +375,11 @@ namespace MediaBrowser.Api.UserLibrary
if (wasPlayed)
{
- await item.MarkPlayed(user, datePlayed, _userDataRepository).ConfigureAwait(false);
+ await item.MarkPlayed(user, datePlayed, true).ConfigureAwait(false);
}
else
{
- await item.MarkUnplayed(user, _userDataRepository).ConfigureAwait(false);
+ await item.MarkUnplayed(user).ConfigureAwait(false);
}
return _userDataRepository.GetUserDataDto(item, user);