1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

needed to pass the filterType, received the filterType and handle

the filterType
This commit is contained in:
geogolem
2017-03-02 15:14:43 -05:00
parent b492fece6c
commit ff11388009
5 changed files with 32 additions and 3 deletions
+7
View File
@@ -252,8 +252,15 @@ namespace NzbDrone.Api.REST
{
pagingResource.FilterValue = Request.Query.FilterValue.ToString();
}
if (Request.Query.FilterType != null)
{
pagingResource.FilterType = Request.Query.FilterType.ToString();
}
}
return pagingResource;
}
}