aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2023-12-18 23:21:45 +0100
committerGitHub <noreply@github.com>2023-12-18 23:21:45 +0100
commit053c3392f4b7583e5b6955738001661f1d0aee36 (patch)
treeda6250b6d1c635bb7a241ef07a2787201e68cd3d /Emby.Server.Implementations/Library
parentf039de033a027d5e42816ae441c3ad1a242f0c11 (diff)
parent192559db32ef60b2a56b7acf689b6edc3cdc3487 (diff)
Merge pull request #10682 from barronpm/livetv-warnings
Fix some warnings in LiveTV
Diffstat (limited to 'Emby.Server.Implementations/Library')
-rw-r--r--Emby.Server.Implementations/Library/ExclusiveLiveStream.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/ExclusiveLiveStream.cs b/Emby.Server.Implementations/Library/ExclusiveLiveStream.cs
index 868071a992..b1649afad5 100644
--- a/Emby.Server.Implementations/Library/ExclusiveLiveStream.cs
+++ b/Emby.Server.Implementations/Library/ExclusiveLiveStream.cs
@@ -12,7 +12,7 @@ using MediaBrowser.Model.Dto;
namespace Emby.Server.Implementations.Library
{
- public class ExclusiveLiveStream : ILiveStream
+ public sealed class ExclusiveLiveStream : ILiveStream
{
private readonly Func<Task> _closeFn;
@@ -51,5 +51,10 @@ namespace Emby.Server.Implementations.Library
{
return Task.CompletedTask;
}
+
+ /// <inheritdoc />
+ public void Dispose()
+ {
+ }
}
}