Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/e9fdc6a575d70967edc3ddb2173f4394a7be7b16
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
20 additions and
4 deletions
@ -41,21 +41,21 @@ define(
}
else {
if ( this . model . get ( 'downloading' ) ) {
icon = 'icon- download-alt ';
icon = 'icon- nd-downloading ';
tooltip = 'Episode is downloading' ;
}
else if ( ! this . model . get ( 'airDateUtc' ) ) {
icon = 'icon- question-sign ';
icon = 'icon- nd-tba ';
tooltip = 'TBA' ;
}
else if ( hasAired ) {
icon = 'icon- warning-sign ';
icon = 'icon- nd-missing ';
tooltip = 'Episode missing from disk' ;
}
else {
icon = 'icon- time ';
icon = 'icon- nd-not-aired ';
tooltip = 'Episode has not aired' ;
}
}
@ -89,4 +89,20 @@
.icon-nd-update:before {
.icon(@download-alt);
}
.icon-nd-downloading:before {
.icon(@download-alt);
}
.icon-nd-tba:before {
.icon(@question-sign);
}
.icon-nd-missing:before {
.icon(@warning-sign);
}
.icon-nd-not-aired:before {
.icon(@time);
}