mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 13:10:13 -07:00
Fix deleting providers
(cherry picked from commit a6f8391f40b38daba7208db4e2354ceeba4d08fe)
This commit is contained in:
parent
7fe36a7e92
commit
ccc417e62e
1 changed files with 2 additions and 1 deletions
|
@ -102,9 +102,10 @@ namespace Lidarr.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…
Add table
Add a link
Reference in a new issue