diff options
| author | theguymadmax <theguymadmax@proton.me> | 2026-06-24 22:30:12 -0400 |
|---|---|---|
| committer | theguymadmax <theguymadmax@proton.me> | 2026-06-24 22:30:12 -0400 |
| commit | e26f4a10059feba50017a9b5dd1851a658e46298 (patch) | |
| tree | 703982c241c64bfec96f318fb6b3ac4e891f24f1 /Emby.Server.Implementations/Session/SessionManager.cs | |
| parent | 987744529aadd3a5e0da60ae1e6dec0e6e8ea469 (diff) | |
Fix Live TV tuner not releasing
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index 18811ef3a9..19823dff37 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -343,6 +343,10 @@ namespace Emby.Server.Implementations.Session _activeLiveStreamSessions.TryRemove(liveStreamId, out _); } } + else + { + liveStreamNeedsToBeClosed = true; + } if (liveStreamNeedsToBeClosed) { |
