Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/5394cc2dc95ebdba93a1ab10cb0a73d800c0a8a9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
22 additions and
5 deletions
@ -1,9 +1,21 @@
. protocol {
composes : cell from '~Components/Table/Cells/TableRowCell.css' ;
width : 80px ;
}
. title {
composes : cell from '~Components/Table/Cells/TableRowCell.css' ;
word-break : break-all ;
}
. indexer {
composes : cell from '~Components/Table/Cells/TableRowCell.css' ;
width : 85px ;
}
. quality ,
. language {
composes : cell from '~Components/Table/Cells/TableRowCell.css' ;
@ -36,3 +48,9 @@
white-space : nowrap ;
}
. peers {
composes : cell from '~Components/Table/Cells/TableRowCell.css' ;
width : 75px ;
}
@ -125,7 +125,7 @@ class InteractiveSearchRow extends Component {
return (
< TableRow >
< TableRowCell >
< TableRowCell className = { styles . protocol } >
< ProtocolLabel
protocol = { protocol }
/ >
@ -144,7 +144,7 @@ class InteractiveSearchRow extends Component {
< / L i n k >
< / T a b l e R o w C e l l >
< TableRowCell >
< TableRowCell className = { styles . indexer } >
{ indexer }
< / T a b l e R o w C e l l >
@ -152,7 +152,7 @@ class InteractiveSearchRow extends Component {
{ formatBytes ( size ) }
< / T a b l e R o w C e l l >
< TableRowCell >
< TableRowCell className = { styles . peers } >
{
protocol === 'torrent' &&
< Peers
@ -30,8 +30,7 @@ namespace Sonarr.Api.V3.Indexers
{
release . QualityWeight = decision . RemoteEpisode
. Series
. QualityProfile . Value
. Items . FindIndex ( v = > v . Quality = = release . Quality . Quality ) * 100 ;
. QualityProfile . Value . GetIndex ( release . Quality . Quality ) . Index * 100 ;
release . LanguageWeight = decision . RemoteEpisode
. Series