aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session
diff options
context:
space:
mode:
authorMasood <MSalman5230@gmail.com>2025-12-10 18:11:03 +0530
committerMasood <MSalman5230@gmail.com>2025-12-10 18:11:03 +0530
commit37d6101f022a943f3c6bbb09702c528aaf47767e (patch)
treebb10e640d5e6d555d170a38ffb0bf217d64eea1c /Emby.Server.Implementations/Session
parentd70e0fe9cf29a647bf67e171d0da9c2b264e8970 (diff)
Fix watched status resetting on re-watch
Diffstat (limited to 'Emby.Server.Implementations/Session')
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs
index cf2ca047cf..0a1a59f775 100644
--- a/Emby.Server.Implementations/Session/SessionManager.cs
+++ b/Emby.Server.Implementations/Session/SessionManager.cs
@@ -822,7 +822,7 @@ namespace Emby.Server.Implementations.Session
{
data.Played = true;
}
- else
+ else if (!data.Played)
{
data.Played = false;
}