1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Workaround .net error serializing new object()

See https://github.com/dotnet/runtime/issues/61995
This commit is contained in:
ta264
2021-12-01 21:28:41 +00:00
parent e139708bb2
commit cdde7d4d8b
7 changed files with 9 additions and 8 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ namespace Radarr.Api.V3.Queue
_trackedDownloadService.StopTracking(trackedDownloadIds);
return new object();
return new { };
}
[HttpGet]