mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 04:21:27 +02:00
Fixed: support full any valid int32 as valid route ID
This commit is contained in:
@@ -12,7 +12,7 @@ namespace NzbDrone.Api.REST
|
|||||||
where TResource : RestResource, new()
|
where TResource : RestResource, new()
|
||||||
{
|
{
|
||||||
private const string ROOT_ROUTE = "/";
|
private const string ROOT_ROUTE = "/";
|
||||||
private const string ID_ROUTE = @"/(?<id>[\d]{1,7})";
|
private const string ID_ROUTE = @"/(?<id>[\d]{1,10})";
|
||||||
|
|
||||||
private Action<int> _deleteResource;
|
private Action<int> _deleteResource;
|
||||||
private Func<int, TResource> _getResourceById;
|
private Func<int, TResource> _getResourceById;
|
||||||
|
Reference in New Issue
Block a user