mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
workaround for #334
This commit is contained in:
parent
292e078c13
commit
8e004cea2e
5 changed files with 1452 additions and 1448 deletions
|
@ -136,7 +136,11 @@ namespace PlexRequests.Api
|
||||||
{
|
{
|
||||||
var request = new RestRequest
|
var request = new RestRequest
|
||||||
{
|
{
|
||||||
Resource = "/api/{apikey}/movie.list?status={status}"
|
Resource = "/api/{apikey}/movie.list?status={status}",
|
||||||
|
OnBeforeDeserialization = (x =>
|
||||||
|
{
|
||||||
|
x.Content = x.Content.Replace("[]", "{}");
|
||||||
|
})
|
||||||
};
|
};
|
||||||
|
|
||||||
request.AddUrlSegment("apikey", apiKey);
|
request.AddUrlSegment("apikey", apiKey);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue