Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/5a7e97222ccbe14eb21cc0b8fdc84588e172c5da?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
3 deletions
@ -129,7 +129,8 @@
"playing" : "Playing" ,
"playing" : "Playing" ,
"transcoding" : "Transcoding" ,
"transcoding" : "Transcoding" ,
"bitrate" : "Bitrate" ,
"bitrate" : "Bitrate" ,
"no_active" : "No Active Streams"
"no_active" : "No Active Streams" ,
"plex_connection_error" : "Check Plex Connection"
} ,
} ,
"omada" : {
"omada" : {
"connectedAp" : "Connected APs" ,
"connectedAp" : "Connected APs" ,
@ -122,8 +122,8 @@ export default function Component({ service }) {
refreshInterval : 5000 ,
refreshInterval : 5000 ,
} ) ;
} ) ;
if ( activityError ) {
if ( activityError || ( activityData && Object . keys ( activityData . response . data ) . length === 0 ) ) {
return < Container service = { service } error = { activityError } / > ;
return < Container service = { service } error = { activityError ? ? { message : t ( "tautulli.plex_connection_error" ) } } / > ;
}
}
if ( ! activityData ) {
if ( ! activityData ) {