Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/2958faf4a82eabd3166a239f278559210a86ef06
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
0 deletions
@ -100,6 +100,7 @@ namespace NzbDrone.Core.Notifications.CustomScript
{
environmentVariables . Add ( "Radarr_DeletedRelativePaths" , string . Join ( "|" , message . OldMovieFiles . Select ( e = > e . RelativePath ) ) ) ;
environmentVariables . Add ( "Radarr_DeletedPaths" , string . Join ( "|" , message . OldMovieFiles . Select ( e = > Path . Combine ( movie . Path , e . RelativePath ) ) ) ) ;
environmentVariables . Add ( "Radarr_DeletedDateAdded" , string . Join ( "|" , message . OldMovieFiles . Select ( e = > e . DateAdded ) ) ) ;
}
ExecuteScript ( environmentVariables ) ;
@ -1,3 +1,4 @@
using System ;
using NzbDrone.Core.MediaFiles ;
namespace NzbDrone.Core.Notifications.Webhook
@ -19,6 +20,7 @@ namespace NzbDrone.Core.Notifications.Webhook
SceneName = movieFile . SceneName ;
IndexerFlags = movieFile . IndexerFlags . ToString ( ) ;
Size = movieFile . Size ;
DateAdded = movieFile . DateAdded ;
}
public int Id { get ; set ; }
@ -30,5 +32,6 @@ namespace NzbDrone.Core.Notifications.Webhook
public string SceneName { get ; set ; }
public string IndexerFlags { get ; set ; }
public long Size { get ; set ; }
public DateTime DateAdded { get ; set ; }
}
}