Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/e5d479a162b5159bfc38aa6a32f40d89b433f9c8?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
70 additions and
32 deletions
@ -2500,6 +2500,39 @@
"schema" : {
"type" : "string"
}
} ,
{
"name" : "movieIds" ,
"in" : "query" ,
"schema" : {
"type" : "array" ,
"items" : {
"type" : "integer" ,
"format" : "int32"
}
}
} ,
{
"name" : "languages" ,
"in" : "query" ,
"schema" : {
"type" : "array" ,
"items" : {
"type" : "integer" ,
"format" : "int32"
}
}
} ,
{
"name" : "quality" ,
"in" : "query" ,
"schema" : {
"type" : "array" ,
"items" : {
"type" : "integer" ,
"format" : "int32"
}
}
}
] ,
"responses" : {
@ -2550,14 +2583,6 @@
"200" : {
"description" : "Success" ,
"content" : {
"text/plain" : {
"schema" : {
"type" : "array" ,
"items" : {
"$ref" : "#/components/schemas/HistoryResource"
}
}
} ,
"application/json" : {
"schema" : {
"type" : "array" ,
@ -2565,14 +2590,6 @@
"$ref" : "#/components/schemas/HistoryResource"
}
}
} ,
"text/json" : {
"schema" : {
"type" : "array" ,
"items" : {
"$ref" : "#/components/schemas/HistoryResource"
}
}
}
}
}
@ -2613,14 +2630,6 @@
"200" : {
"description" : "Success" ,
"content" : {
"text/plain" : {
"schema" : {
"type" : "array" ,
"items" : {
"$ref" : "#/components/schemas/HistoryResource"
}
}
} ,
"application/json" : {
"schema" : {
"type" : "array" ,
@ -2628,14 +2637,6 @@
"$ref" : "#/components/schemas/HistoryResource"
}
}
} ,
"text/json" : {
"schema" : {
"type" : "array" ,
"items" : {
"$ref" : "#/components/schemas/HistoryResource"
}
}
}
}
}
@ -6746,6 +6747,43 @@
"type" : "boolean" ,
"default" : false
}
} ,
{
"name" : "movieIds" ,
"in" : "query" ,
"schema" : {
"type" : "array" ,
"items" : {
"type" : "integer" ,
"format" : "int32"
}
}
} ,
{
"name" : "protocol" ,
"in" : "query" ,
"schema" : {
"$ref" : "#/components/schemas/DownloadProtocol"
}
} ,
{
"name" : "languages" ,
"in" : "query" ,
"schema" : {
"type" : "array" ,
"items" : {
"type" : "integer" ,
"format" : "int32"
}
}
} ,
{
"name" : "quality" ,
"in" : "query" ,
"schema" : {
"type" : "integer" ,
"format" : "int32"
}
}
] ,
"responses" : {