diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-06-27 09:20:00 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-27 09:20:00 -0400 |
| commit | 58de9b7a9934568c835853e2da728c4ef5083a1a (patch) | |
| tree | 8cb9e14b2100f22487a111ee7c1f41d8f21639df /Emby.Server.Implementations/Session/SessionManager.cs | |
| parent | aa037c748a0d973913c5b03a32bc752276315635 (diff) | |
| parent | e26f4a10059feba50017a9b5dd1851a658e46298 (diff) | |
Merge pull request #17178 from jellyfin/fix-livetv-sessions
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) { |
