|
@@ -37,12 +37,11 @@ using MediaBrowser.Model.IO;
|
|
|
using MediaBrowser.Model.LiveTv;
|
|
|
using MediaBrowser.Model.MediaInfo;
|
|
|
using MediaBrowser.Model.Providers;
|
|
|
-using MediaBrowser.Model.Querying;
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
|
|
{
|
|
|
- public class EmbyTV : ILiveTvService, ISupportsDirectStreamProvider, ISupportsNewTimerIds, IDisposable
|
|
|
+ public sealed class EmbyTV : ILiveTvService, ISupportsDirectStreamProvider, ISupportsNewTimerIds, IDisposable
|
|
|
{
|
|
|
public const string DateAddedFormat = "yyyy-MM-dd HH:mm:ss";
|
|
|
|
|
@@ -74,7 +73,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
|
|
|
|
|
private readonly SemaphoreSlim _recordingDeleteSemaphore = new SemaphoreSlim(1, 1);
|
|
|
|
|
|
- private bool _disposed = false;
|
|
|
+ private bool _disposed;
|
|
|
|
|
|
public EmbyTV(
|
|
|
IServerApplicationHost appHost,
|
|
@@ -2524,22 +2523,13 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
public void Dispose()
|
|
|
- {
|
|
|
- Dispose(true);
|
|
|
- GC.SuppressFinalize(this);
|
|
|
- }
|
|
|
-
|
|
|
- protected virtual void Dispose(bool disposing)
|
|
|
{
|
|
|
if (_disposed)
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (disposing)
|
|
|
- {
|
|
|
- _recordingDeleteSemaphore.Dispose();
|
|
|
- }
|
|
|
+ _recordingDeleteSemaphore.Dispose();
|
|
|
|
|
|
foreach (var pair in _activeRecordings.ToList())
|
|
|
{
|