Target full framework (Mono) as well for transition period

This commit is contained in:
flightlevel
2018-05-20 21:51:52 +10:00
parent 88945be5d7
commit 0a70f91bf1
2 changed files with 24 additions and 5 deletions

View File

@@ -191,12 +191,12 @@ namespace Jackett.Server.Controllers
{
if (t.Key == "Tracker[]")
{
request.Tracker = t.Value.ToString().Split(",");
request.Tracker = t.Value.ToString().Split(',');
}
if (t.Key == "Category[]")
{
request.Category = t.Value.ToString().Split(",").Select(Int32.Parse).ToArray();
request.Category = t.Value.ToString().Split(',').Select(Int32.Parse).ToArray();
}
if (t.Key == "query")