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 /Emby.Server.Implementations/LiveTv/LiveTvManager.cs | |
| parent | 55916a09eb4c88b12906e78d56efb7a67d3dad7e (diff) | |
Fix More Live TV Warnings (#10818)
* Fix CA1819 in LiveTvManager
* Call ConfigureAwait in ChannelManager
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/LiveTvManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/LiveTvManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs index ca8e204d7..426165de6 100644 --- a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs +++ b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs @@ -105,9 +105,9 @@ namespace Emby.Server.Implementations.LiveTv /// <value>The services.</value> public IReadOnlyList<ILiveTvService> Services => _services; - public ITunerHost[] TunerHosts => _tunerHosts; + public IReadOnlyList<ITunerHost> TunerHosts => _tunerHosts; - public IListingsProvider[] ListingProviders => _listingProviders; + public IReadOnlyList<IListingsProvider> ListingProviders => _listingProviders; private LiveTvOptions GetConfiguration() { |
