diff options
| author | crobibero <cody@robibe.ro> | 2020-08-04 08:27:54 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-08-04 08:27:54 -0600 |
| commit | 8f6c2e767906c1d4c62d51ae2e66af1a78edde9a (patch) | |
| tree | 4e6736c8252b0aeaf7277aa0326852f665d81f4d /Jellyfin.Api/Controllers/CollectionController.cs | |
| parent | 8385c5459142e69eb4004d32b3d772b998c37b0b (diff) | |
Remove leading slash from route attributes
Diffstat (limited to 'Jellyfin.Api/Controllers/CollectionController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/CollectionController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/CollectionController.cs b/Jellyfin.Api/Controllers/CollectionController.cs index 6f78a7d84..1e8426df4 100644 --- a/Jellyfin.Api/Controllers/CollectionController.cs +++ b/Jellyfin.Api/Controllers/CollectionController.cs @@ -16,7 +16,7 @@ namespace Jellyfin.Api.Controllers /// The collection controller. /// </summary> [Authorize(Policy = Policies.DefaultAuthorization)] - [Route("/Collections")] + [Route("Collections")] public class CollectionController : BaseJellyfinApiController { private readonly ICollectionManager _collectionManager; |
