aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2026-06-27 09:20:00 -0400
committerGitHub <noreply@github.com>2026-06-27 09:20:00 -0400
commit58de9b7a9934568c835853e2da728c4ef5083a1a (patch)
tree8cb9e14b2100f22487a111ee7c1f41d8f21639df /Emby.Server.Implementations/Session
parentaa037c748a0d973913c5b03a32bc752276315635 (diff)
parente26f4a10059feba50017a9b5dd1851a658e46298 (diff)
Merge pull request #17178 from jellyfin/fix-livetv-sessions
Fix Live TV tuner not releasing
Diffstat (limited to 'Emby.Server.Implementations/Session')
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs4
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)
{