Fixed: Workaround net6 object serialization issues

This commit is contained in:
Qstick 2021-12-24 12:31:18 -06:00
parent 814d75c022
commit 25914ddf39
5 changed files with 6 additions and 6 deletions

View file

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