Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/7d22696b1f2d9a16cdf26e59dbad1d58f6c9bf45
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
20 additions and
0 deletions
@ -11,6 +11,7 @@ function MovieIndexPosterInfo(props) {
showQualityProfile ,
added ,
inCinemas ,
digitalRelease ,
physicalRelease ,
certification ,
path ,
@ -73,6 +74,24 @@ function MovieIndexPosterInfo(props) {
) ;
}
if ( sortKey === 'digitalRelease' && digitalRelease ) {
const digitalReleaseDate = getRelativeDate (
digitalRelease ,
shortDateFormat ,
showRelativeDates ,
{
timeFormat ,
timeForToday : false
}
) ;
return (
< div className = { styles . info } >
{ ` Digital ${ digitalReleaseDate } ` }
< / d i v >
) ;
}
if ( sortKey === 'physicalRelease' && physicalRelease ) {
const physicalReleaseDate = getRelativeDate (
physicalRelease ,
@ -125,6 +144,7 @@ MovieIndexPosterInfo.propTypes = {
added : PropTypes . string ,
inCinemas : PropTypes . string ,
certification : PropTypes . string ,
digitalRelease : PropTypes . string ,
physicalRelease : PropTypes . string ,
path : PropTypes . string . isRequired ,
sizeOnDisk : PropTypes . number ,