diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-03-05 11:15:14 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-03-05 11:15:14 +0100 |
| commit | a6d0db5d0409f72e2abb02291268b6971eaf1fcf (patch) | |
| tree | 34cb989efc171f8085c5455bae33b07b7a356617 /Emby.Server.Implementations/Plugins/PluginManager.cs | |
| parent | ed7154db68f089cb8366aedaaeb93f1d5405251a (diff) | |
100% branch coverage for DashboardController
Diffstat (limited to 'Emby.Server.Implementations/Plugins/PluginManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Plugins/PluginManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Plugins/PluginManager.cs b/Emby.Server.Implementations/Plugins/PluginManager.cs index 7bc9f0a7e..c579fc8cb 100644 --- a/Emby.Server.Implementations/Plugins/PluginManager.cs +++ b/Emby.Server.Implementations/Plugins/PluginManager.cs @@ -34,7 +34,7 @@ namespace Emby.Server.Implementations.Plugins private readonly ILogger<PluginManager> _logger; private readonly IApplicationHost _appHost; private readonly ServerConfiguration _config; - private readonly IList<LocalPlugin> _plugins; + private readonly List<LocalPlugin> _plugins; private readonly Version _minimumVersion; private IHttpClientFactory? _httpClientFactory; @@ -94,7 +94,7 @@ namespace Emby.Server.Implementations.Plugins /// <summary> /// Gets the Plugins. /// </summary> - public IList<LocalPlugin> Plugins => _plugins; + public IReadOnlyList<LocalPlugin> Plugins => _plugins; /// <summary> /// Returns all the assemblies. |
