Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/5d41ebd322426abc8704538a1d83b4adde3edf5d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
2 deletions
@ -102,7 +102,7 @@ namespace NzbDrone.Core.Download.Pending
var queue = new Queue . Queue
{
Id = HashConverter. GetHashInt31 ( string . Format ( "pending-{0}-ep{1}" , pendingRelease . Id , episode . Id ) ) ,
Id = GetQueueId( pendingRelease , episode ) ,
Series = pendingRelease . RemoteEpisode . Series ,
Episode = episode ,
Quality = pendingRelease . RemoteEpisode . ParsedEpisodeInfo . Quality ,
@ -265,7 +265,12 @@ namespace NzbDrone.Core.Download.Pending
private int FindPendingReleaseId ( int queueId )
{
return GetPendingReleases ( ) . First ( p = > p . RemoteEpisode . Episodes . Any ( e = > queueId = = ( e . Id ^ ( p . Id < < 16 ) ) ) ) . Id ;
return GetPendingReleases ( ) . First ( p = > p . RemoteEpisode . Episodes . Any ( e = > queueId = = GetQueueId ( p , e ) ) ) . Id ;
}
private int GetQueueId ( PendingRelease pendingRelease , Episode episode )
{
return HashConverter . GetHashInt31 ( String . Format ( "pending-{0}-ep{1}" , pendingRelease . Id , episode . Id ) ) ;
}
public void Handle ( SeriesDeletedEvent message )