Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/9ccdb4871d626068e0ef2425dd45e23e0811d0a9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
5 additions and
11 deletions
@ -413,18 +413,13 @@ export const actionHandlers = handleThunks({
} ,
[ BULK _DELETE _MOVIE ] : function ( getState , payload , dispatch ) {
const {
id ,
... queryParams
} = payload ;
dispatch ( set ( {
section ,
isDeleting : true
} ) ) ;
const promise = createAjaxRequest ( {
url : ` /movie/editor? ${ $ . param ( queryParams , true ) } ` ,
url : '/movie/editor' ,
method : 'DELETE' ,
data : JSON . stringify ( payload ) ,
dataType : 'json'
@ -94,12 +94,9 @@ namespace Radarr.Api.V3.Movies
{
var resource = Request . Body . FromJson < MovieEditorResource > ( ) ;
var addExclusion = Request . GetBooleanQueryParameter ( "addNetImportExclusion" ) ;
var deleteFiles = Request . GetBooleanQueryParameter ( "deleteFiles" ) ;
foreach ( var id in resource . MovieIds )
{
_movieService . DeleteMovie ( id , deleteFiles, add Exclusion) ;
_movieService . DeleteMovie ( id , resource . DeleteFiles , resource . AddNetImportExclusion ) ;
}
return new object ( ) ;
@ -1,4 +1,4 @@
using System.Collections.Generic ;
using System.Collections.Generic ;
using NzbDrone.Core.Movies ;
namespace Radarr.Api.V3.Movies
@ -13,6 +13,8 @@ namespace Radarr.Api.V3.Movies
public List < int > Tags { get ; set ; }
public ApplyTags ApplyTags { get ; set ; }
public bool MoveFiles { get ; set ; }
public bool DeleteFiles { get ; set ; }
public bool AddNetImportExclusion { get ; set ; }
}
public enum ApplyTags