Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/e7ff13085e488b5c3a7ff565d496799c311cc567
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
30 additions and
1 deletions
@ -55,6 +55,35 @@ namespace NzbDrone.Core.Notifications.Emby
}
}
public override void OnMovieDelete ( MovieDeleteMessage deleteMessage )
{
if ( deleteMessage . DeletedFiles )
{
if ( Settings . Notify )
{
_mediaBrowserService . Notify ( Settings , MOVIE_DELETED_TITLE_BRANDED , deleteMessage . Message ) ;
}
if ( Settings . UpdateLibrary )
{
_mediaBrowserService . UpdateMovies ( Settings , deleteMessage . Movie , "Deleted" ) ;
}
}
}
public override void OnMovieFileDelete ( MovieFileDeleteMessage deleteMessage )
{
if ( Settings . Notify )
{
_mediaBrowserService . Notify ( Settings , MOVIE_FILE_DELETED_TITLE_BRANDED , deleteMessage . Message ) ;
}
if ( Settings . UpdateLibrary )
{
_mediaBrowserService . UpdateMovies ( Settings , deleteMessage . Movie , "Deleted" ) ;
}
}
public override ValidationResult Test ( )
{
var failures = new List < ValidationFailure > ( ) ;
@ -39,7 +39,7 @@ namespace NzbDrone.Core.Notifications.Emby
[FieldDefinition(4, Label = "Send Notifications", HelpText = "Have MediaBrowser send notfications to configured providers", Type = FieldType.Checkbox)]
public bool Notify { get ; set ; }
[FieldDefinition(5, Label = "Update Library", HelpText = "Update Library on Import & Renam e?", Type = FieldType.Checkbox)]
[FieldDefinition(5, Label = "Update Library", HelpText = "Update Library on Import , Rename or Delet e?", Type = FieldType.Checkbox)]
public bool UpdateLibrary { get ; set ; }
[JsonIgnore]