Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/74de07a22aa2ddece29be27629362012f3ff0ba3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
6 additions and
2 deletions
@ -105,6 +105,7 @@
} ,
"radarr" : {
"wanted" : "Wanted" ,
"missing" : "Missing" ,
"queued" : "Queued" ,
"movies" : "Movies"
} ,
@ -20,6 +20,7 @@ export default function Component({ service }) {
return (
< Container service = { service } >
< Block label = "radarr.wanted" / >
< Block label = "radarr.missing" / >
< Block label = "radarr.queued" / >
< Block label = "radarr.movies" / >
< / Container >
@ -29,6 +30,7 @@ export default function Component({ service }) {
return (
< Container service = { service } >
< Block label = "radarr.wanted" value = { moviesData . wanted } / >
< Block label = "radarr.missing" value = { moviesData . missing } / >
< Block label = "radarr.queued" value = { queuedData . totalCount } / >
< Block label = "radarr.movies" value = { moviesData . have } / >
< / Container >
@ -9,8 +9,9 @@ const widget = {
movie : {
endpoint : "movie" ,
map : ( data ) => ( {
wanted : jsonArrayFilter ( data , ( item ) => item . isAvailable === false ) . length ,
have : jsonArrayFilter ( data , ( item ) => item . isAvailable === true ) . length ,
wanted : jsonArrayFilter ( data , ( item ) => item . monitored && ! item . hasFile && item . isAvailable ) . length ,
have : jsonArrayFilter ( data , ( item ) => item . hasFile ) . length ,
missing : jsonArrayFilter ( data , ( item ) => item . monitored && ! item . hasFile ) . length ,
} ) ,
} ,
"queue/status" : {