|
@@ -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()
|
|
|
+ {
|
|
|
+ }
|
|
|
}
|
|
|
}
|