Make ILiveStream an IDisposable

This commit is contained in:
Patrick Barron
2023-12-05 14:26:35 -05:00
parent 669baf98a5
commit 192559db32
3 changed files with 23 additions and 2 deletions

View File

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