Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/59bc76ebe040443397bf583f53c30ae1b95beab7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
13 additions and
3 deletions
@ -101,6 +101,14 @@ namespace NzbDrone.Core.Notifications.Discord
discordField . Name = "Links" ;
discordField . Value = GetLinksString ( artist ) ;
break ;
case DiscordGrabFieldType . CustomFormats :
discordField . Name = "Custom Formats" ;
discordField . Value = string . Join ( "|" , message . RemoteAlbum . CustomFormats ) ;
break ;
case DiscordGrabFieldType . CustomFormatScore :
discordField . Name = "Custom Format Score" ;
discordField . Value = message . RemoteAlbum . CustomFormatScore . ToString ( ) ;
break ;
case DiscordGrabFieldType . Indexer :
discordField . Name = "Indexer" ;
discordField . Value = message . RemoteAlbum . Release . Indexer ;
@ -12,7 +12,9 @@ namespace NzbDrone.Core.Notifications.Discord
Release ,
Poster ,
Fanart ,
Indexer
Indexer ,
CustomFormats ,
CustomFormatScore
}
public enum DiscordImportFieldType
@ -19,8 +19,8 @@ namespace NzbDrone.Core.Notifications.Discord
public DiscordSettings ( )
{
// Set Default Fields
GrabFields = new int [ ] { 0 , 1 , 2 , 3 , 5, 6 , 7 , 8 , 9 } ;
ImportFields = new int [ ] { 0 , 1 , 2 , 3 , 5 , 6 , 7 , 8 , 9 } ;
GrabFields = new [ ] { 0 , 1 , 2 , 3 , 4, 5, 6 , 7 , 8 , 9 , 10 , 11 , 12 } ;
ImportFields = new [ ] { 0 , 1 , 2 , 3 , 5 , 6 , 7 , 8 , 9 } ;
}
private static readonly DiscordSettingsValidator Validator = new DiscordSettingsValidator ( ) ;