diff options
| author | Patrick Barron <barronpm@gmail.com> | 2024-01-06 15:33:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-06 13:33:58 -0700 |
| commit | 82f93afa22c9695f960903f7b90c7a2c8b23af74 (patch) | |
| tree | ad1cce518255a8e02021184f4faf0b99a843272b /MediaBrowser.Controller | |
| parent | 55916a09eb4c88b12906e78d56efb7a67d3dad7e (diff) | |
Fix More Live TV Warnings (#10818)
* Fix CA1819 in LiveTvManager
* Call ConfigureAwait in ChannelManager
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ILiveTvManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs index 3b6a16dee3..4206159e7b 100644 --- a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs +++ b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs @@ -36,7 +36,7 @@ namespace MediaBrowser.Controller.LiveTv /// <value>The services.</value> IReadOnlyList<ILiveTvService> Services { get; } - IListingsProvider[] ListingProviders { get; } + IReadOnlyList<IListingsProvider> ListingProviders { get; } /// <summary> /// Gets the new timer defaults asynchronous. |
