Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/567824ebecda371346c6edaae304280c6e4c50a7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
17 additions and
0 deletions
@ -10,6 +10,7 @@ import TableRowCell from 'Components/Table/Cells/TableRowCell';
import TableSelectCell from 'Components/Table/Cells/TableSelectCell' ;
import ProtocolLabel from 'Activity/Queue/ProtocolLabel' ;
import MovieQuality from 'Movie/MovieQuality' ;
import MovieFormats from 'Movie/MovieFormats' ;
import MovieLanguage from 'Movie/MovieLanguage' ;
import InteractiveImportModal from 'InteractiveImport/InteractiveImportModal' ;
import MovieTitleLink from 'Movie/MovieTitleLink' ;
@ -167,6 +168,16 @@ class QueueRow extends Component {
) ;
}
if ( name === 'quality.customFormats' ) {
return (
< TableRowCell key = { name } >
< MovieFormats
formats = { quality . customFormats }
/ >
< / T a b l e R o w C e l l >
) ;
}
if ( name === 'protocol' ) {
return (
< TableRowCell key = { name } >
@ -80,6 +80,12 @@ export const defaultState = {
isSortable : true ,
isVisible : true
} ,
{
name : 'quality.customFormats' ,
label : 'Custom Formats' ,
isSortable : true ,
isVisible : true
} ,
{
name : 'protocol' ,
label : 'Protocol' ,