Fixed: Select option type for cardigann indexers

This commit is contained in:
ta264
2021-02-24 21:38:29 +00:00
parent e24c2d7c5f
commit b870f96ec8
2 changed files with 2 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ namespace Prowlarr.Api.V1.Indexers
{
if (setting.Type == "select")
{
return value.ToString().ParseInt32() ?? 0;
return value.ToString().ParseInt64() ?? 0;
}
else if (setting.Type == "checkbox")
{