diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-04-24 19:40:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-24 19:40:38 +0200 |
| commit | 461662f1ff6dff3c8c229850c1af37e188a88d0e (patch) | |
| tree | 8637cf347d573917242a3c5546baee33028825a3 | |
| parent | b1e2419c6593a3aa4c8df3778831a3214ae5a1c0 (diff) | |
| parent | a183fce142a47db3b2b9faa1e0f2863f0d56e5a1 (diff) | |
Merge pull request #15762 from MSalman5230/Preservation-of-Watched-Status-on-Re-watch
Fix watched status resetting on re-watch
| -rw-r--r-- | CONTRIBUTORS.md | 1 | ||||
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 0255f02256..eb2221f2b3 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -227,6 +227,7 @@ - [ZeusCraft10](https://github.com/ZeusCraft10) - [MarcoCoreDuo](https://github.com/MarcoCoreDuo) - [LiHRaM](https://github.com/LiHRaM) + - [MSalman5230](https://github.com/MSalman5230) # Emby Contributors diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index 6b8888d244..d4d0f4537b 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -832,10 +832,6 @@ namespace Emby.Server.Implementations.Session { data.Played = true; } - else - { - data.Played = false; - } _userDataManager.SaveUserData(user, item, data, UserDataSaveReason.PlaybackStart, CancellationToken.None); } |
