Fix deleting providers

(cherry picked from commit a6f8391f40b38daba7208db4e2354ceeba4d08fe)
pull/2397/head
ta264 3 years ago committed by Qstick
parent 7fe36a7e92
commit ccc417e62e

@ -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")]

Loading…
Cancel
Save