diff options
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/ITunerHostManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ITunerHostManager.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ITunerHostManager.cs b/MediaBrowser.Controller/LiveTv/ITunerHostManager.cs index 7e4caaf13..3df6066f6 100644 --- a/MediaBrowser.Controller/LiveTv/ITunerHostManager.cs +++ b/MediaBrowser.Controller/LiveTv/ITunerHostManager.cs @@ -34,9 +34,8 @@ public interface ITunerHostManager /// Discovers the available tuners. /// </summary> /// <param name="newDevicesOnly">A value indicating whether to only return new devices.</param> - /// <param name="cancellationToken">The <see cref="CancellationToken"/> to use.</param> /// <returns>The <see cref="TunerHostInfo"/>s.</returns> - Task<List<TunerHostInfo>> DiscoverTuners(bool newDevicesOnly, CancellationToken cancellationToken); + IAsyncEnumerable<TunerHostInfo> DiscoverTuners(bool newDevicesOnly); /// <summary> /// Scans for tuner devices that have changed URLs. |
