aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Plugins/PluginManager.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2024-11-17 01:23:26 +0100
committerGitHub <noreply@github.com>2024-11-17 01:23:26 +0100
commit427359deee0a029a36ed92f2668968b5976eb4a9 (patch)
tree3b0206f69fdc5a04f2b46fd63c3d25c4c4fe424d /Emby.Server.Implementations/Plugins/PluginManager.cs
parent17e4485b946f5b58a0bed99312c57abb59181376 (diff)
parent9e05abcc850c0c41818042d4383c621f54a6e40f (diff)
Merge branch 'master' into feature/EFUserData
Diffstat (limited to 'Emby.Server.Implementations/Plugins/PluginManager.cs')
-rw-r--r--Emby.Server.Implementations/Plugins/PluginManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Plugins/PluginManager.cs b/Emby.Server.Implementations/Plugins/PluginManager.cs
index db82a2900..e7323d9d0 100644
--- a/Emby.Server.Implementations/Plugins/PluginManager.cs
+++ b/Emby.Server.Implementations/Plugins/PluginManager.cs
@@ -835,7 +835,7 @@ namespace Emby.Server.Implementations.Plugins
/// <exception cref="ArgumentNullException">If the <see cref="LocalPlugin"/> is null.</exception>
private bool TryGetPluginDlls(LocalPlugin plugin, out IReadOnlyList<string> whitelistedDlls)
{
- ArgumentNullException.ThrowIfNull(nameof(plugin));
+ ArgumentNullException.ThrowIfNull(plugin);
IReadOnlyList<string> pluginDlls = Directory.GetFiles(plugin.Path, "*.dll", SearchOption.AllDirectories);