Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/a9e03ed1ccb7b3b3945e9c6e34c6194f1d26580e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
11 additions and
3 deletions
@ -34,7 +34,9 @@ namespace NzbDrone.Core.Notifications.Webhook
QualityVersion = quality . Revision . Version ,
ReleaseGroup = remoteBook . ParsedBookInfo . ReleaseGroup
} ) ,
Release = new WebhookRelease ( quality , remoteBook )
Release = new WebhookRelease ( quality , remoteBook ) ,
DownloadClient = message . DownloadClient ,
DownloadId = message . DownloadId
} ;
_proxy . SendWebhook ( payload , Settings ) ;
@ -47,10 +49,12 @@ namespace NzbDrone.Core.Notifications.Webhook
var payload = new WebhookImportPayload
{
EventType = "Download" ,
A utho r = new WebhookAuthor ( message . Author ) ,
A rtist = new WebhookAuthor ( message . Author ) ,
Book = new WebhookBook ( message . Book ) ,
BookFiles = bookFiles . ConvertAll ( x = > new WebhookBookFile ( x ) ) ,
IsUpgrade = message . OldFiles . Any ( )
IsUpgrade = message . OldFiles . Any ( ) ,
DownloadClient = message . DownloadClient ,
DownloadId = message . DownloadId
} ;
_proxy . SendWebhook ( payload , Settings ) ;
@ -6,5 +6,7 @@ namespace NzbDrone.Core.Notifications.Webhook
{
public List < WebhookBook > Books { get ; set ; }
public WebhookRelease Release { get ; set ; }
public string DownloadClient { get ; set ; }
public string DownloadId { get ; set ; }
}
}
@ -7,5 +7,7 @@ namespace NzbDrone.Core.Notifications.Webhook
public WebhookBook Book { get ; set ; }
public List < WebhookBookFile > BookFiles { get ; set ; }
public bool IsUpgrade { get ; set ; }
public string DownloadClient { get ; set ; }
public string DownloadId { get ; set ; }
}
}