fix video getting marked unplayed when watching

pull/702/head
Luke Pulverenti 8 years ago
parent 55f47d2120
commit eb65dd8126

@ -633,9 +633,12 @@ namespace MediaBrowser.Server.Implementations.Session
data.PlayCount++;
data.LastPlayedDate = DateTime.UtcNow;
if (!(item is Video) && item.SupportsPlayedStatus)
if (item.SupportsPlayedStatus)
{
data.Played = true;
if (!(item is Video))
{
data.Played = true;
}
}
else
{

Loading…
Cancel
Save