Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/a96df79572639859682ab3a821259c3403ddb30f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
2 deletions
@ -41,6 +41,7 @@ export const defaultState = {
{
name : 'albumTitle' ,
label : 'Album Title' ,
isSortable : true ,
isVisible : true
} ,
{
@ -119,6 +120,7 @@ export const defaultState = {
{
name : 'albumTitle' ,
label : 'Album Title' ,
isSortable : true ,
isVisible : true
} ,
{
@ -119,6 +119,10 @@ namespace NzbDrone.Core.Music
{
sortKey = "Artists." + pagingSpec . SortKey . Split ( '.' ) . Last ( ) ;
}
else if ( pagingSpec . SortKey = = "albumTitle" )
{
sortKey = "Albums.title" ;
}
else
{
sortKey = "Albums.releaseDate" ;
@ -138,11 +142,11 @@ namespace NzbDrone.Core.Music
private int GetMissingAlbumsQueryCount ( PagingSpec < Album > pagingSpec , DateTime currentTime )
{
var monitored = 0 ;
var monitored = "(Albums.[Monitored] = 0) OR (Artists.[Monitored] = 0)" ;
if ( pagingSpec . FilterExpressions . FirstOrDefault ( ) . ToString ( ) . Contains ( "True" ) )
{
monitored = 1 ;
monitored = "(Albums.[Monitored] = 1) AND (Artists.[Monitored] = 1)" ;
}
string query = string . Format ( "SELECT Albums.* FROM (SELECT Tracks.AlbumId, COUNT(*) AS TotalTrackCount," +
@ -180,6 +184,10 @@ namespace NzbDrone.Core.Music
{
sortKey = "Artists." + pagingSpec . SortKey . Split ( '.' ) . Last ( ) ;
}
else if ( pagingSpec . SortKey = = "albumTitle" )
{
sortKey = "Albums.title" ;
}
else
{
sortKey = "Albums.releaseDate" ;