Fixed: support full any valid int32 as valid route ID

pull/170/head
Keivan Beigi 10 years ago
parent d478e6d932
commit 0f0cc236de

@ -12,7 +12,7 @@ namespace NzbDrone.Api.REST
where TResource : RestResource, new()
{
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 Func<int, TResource> _getResourceById;

Loading…
Cancel
Save