Fix deleting providers

pull/906/head
ta264 4 years ago
parent 025cb04035
commit a6f8391f40

@ -100,9 +100,10 @@ namespace Readarr.Api.V1
} }
[RestDeleteById] [RestDeleteById]
public void DeleteProvider(int id) public object DeleteProvider(int id)
{ {
_providerFactory.Delete(id); _providerFactory.Delete(id);
return new object();
} }
[HttpGet("schema")] [HttpGet("schema")]
Loading…
Cancel
Save