Fix deleting providers

(cherry picked from commit a6f8391f40b38daba7208db4e2354ceeba4d08fe)
This commit is contained in:
ta264 2021-08-04 21:42:41 +01:00 committed by Qstick
parent 7fe36a7e92
commit ccc417e62e
1 changed files with 2 additions and 1 deletions

View File

@ -102,9 +102,10 @@ namespace Lidarr.Api.V1
}
[RestDeleteById]
public void DeleteProvider(int id)
public object DeleteProvider(int id)
{
_providerFactory.Delete(id);
return new object();
}
[HttpGet("schema")]