mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
commit
0b70512cdc
@ -633,9 +633,12 @@ namespace MediaBrowser.Server.Implementations.Session
|
|||||||
data.PlayCount++;
|
data.PlayCount++;
|
||||||
data.LastPlayedDate = DateTime.UtcNow;
|
data.LastPlayedDate = DateTime.UtcNow;
|
||||||
|
|
||||||
if (!(item is Video) && item.SupportsPlayedStatus)
|
if (item.SupportsPlayedStatus)
|
||||||
{
|
{
|
||||||
data.Played = true;
|
if (!(item is Video))
|
||||||
|
{
|
||||||
|
data.Played = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user