Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/086640519ac6065297f7d87ba0df6719e3341bcd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
9 deletions
@ -163,9 +163,13 @@ class QueueRow extends Component {
if ( name === 'quality' ) {
return (
< TableRowCell key = { name } >
< MovieQuality
quality = { quality }
/ >
{
quality ?
< MovieQuality
quality = { quality }
/ > :
null
}
< / T a b l e R o w C e l l >
) ;
}
@ -1,4 +1,3 @@
import _ from 'lodash' ;
import PropTypes from 'prop-types' ;
import React , { Component } from 'react' ;
import { connect } from 'react-redux' ;
@ -13,11 +12,11 @@ function createMapStateToProps() {
createMovieSelector ( ) ,
createUISettingsSelector ( ) ,
( movie , uiSettings ) => {
const result = _ . pick ( uiSettings , [
'showRelativeDates' ,
'shortDateFormat' ,
'timeFormat'
]) ;
const result = {
showRelativeDates : uiSettings . showRelativeDates ,
shortDateFormat : uiSettings . shortDateFormat ,
timeFormat : uiSettings . timeFormat
} ;
result . movie = movie ;