Fix deleting providers

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

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