Minor controller updates as the web app expects no content

This commit is contained in:
flightlevel
2018-05-05 17:10:36 +10:00
parent 5eed9d7038
commit 615794a4bf
3 changed files with 20 additions and 10 deletions

View File

@@ -84,7 +84,7 @@ namespace Jackett.Server.Controllers
[HttpPost]
[Route("{indexerId?}/Config")]
[TypeFilter(typeof(RequiresIndexer))]
public async Task UpdateConfig([FromBody]Common.Models.DTO.ConfigItem[] config)
public async Task<IActionResult> UpdateConfig([FromBody]Common.Models.DTO.ConfigItem[] config)
{
try
{
@@ -95,7 +95,11 @@ namespace Jackett.Server.Controllers
var configurationResult = await CurrentIndexer.ApplyConfiguration(json);
if (configurationResult == IndexerConfigurationStatus.RequiresTesting)
{
await IndexerService.TestIndexer(CurrentIndexer.ID);
}
return new NoContentResult();
}
catch
{