diff options
| author | Bond_009 <bond.009@outlook.com> | 2022-10-06 20:39:22 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2022-10-06 20:39:22 +0200 |
| commit | f5613add1af9e789a7c16f6f631cccd329d5841a (patch) | |
| tree | 39249b951303f078ca112a4ae0454d0ec07a0167 /Jellyfin.Api/Attributes/HttpUnsubscribeAttribute.cs | |
| parent | a9a5fcde81060c9da2096235d61128006339a2ee (diff) | |
Remove extra argument
Diffstat (limited to 'Jellyfin.Api/Attributes/HttpUnsubscribeAttribute.cs')
| -rw-r--r-- | Jellyfin.Api/Attributes/HttpUnsubscribeAttribute.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Attributes/HttpUnsubscribeAttribute.cs b/Jellyfin.Api/Attributes/HttpUnsubscribeAttribute.cs index 16b3d0816..d0238424a 100644 --- a/Jellyfin.Api/Attributes/HttpUnsubscribeAttribute.cs +++ b/Jellyfin.Api/Attributes/HttpUnsubscribeAttribute.cs @@ -25,6 +25,6 @@ namespace Jellyfin.Api.Attributes /// <param name="template">The route template. May not be null.</param> public HttpUnsubscribeAttribute(string template) : base(_supportedMethods, template) - => ArgumentNullException.ThrowIfNull(template, nameof(template)); + => ArgumentNullException.ThrowIfNull(template); } } |
