diff --git a/src/NzbDrone.Api/REST/RestModule.cs b/src/NzbDrone.Api/REST/RestModule.cs index e7acab8f6..434dd804f 100644 --- a/src/NzbDrone.Api/REST/RestModule.cs +++ b/src/NzbDrone.Api/REST/RestModule.cs @@ -12,7 +12,7 @@ public abstract class RestModule : NancyModule where TResource : RestResource, new() { private const string ROOT_ROUTE = "/"; - private const string ID_ROUTE = @"/(?[\d]{1,7})"; + private const string ID_ROUTE = @"/(?[\d]{1,10})"; private Action _deleteResource; private Func _getResourceById;