Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/f9cd9f3204b37b84a9fea11a70566a6720abee66
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
2 deletions
@ -22,12 +22,14 @@ namespace Radarr.Api.V3.ManualImport
}
[HttpGet]
[Produces("application/json")]
public List < ManualImportResource > GetMediaFiles ( string folder , string downloadId , int? movieId , bool filterExistingFiles = true )
{
return _manualImportService . GetMediaFiles ( folder , downloadId , movieId , filterExistingFiles ) . ToResource ( ) . Select ( AddQualityWeight ) . ToList ( ) ;
}
[HttpPost]
[Consumes("application/json")]
public object ReprocessItems ( [ FromBody ] List < ManualImportReprocessResource > items )
{
foreach ( var item in items )
@ -39,8 +41,8 @@ namespace Radarr.Api.V3.ManualImport
item . CustomFormats = processedItem . CustomFormats . ToResource ( false ) ;
item . CustomFormatScore = processedItem . CustomFormatScore ;
if ( item . Languages ? . Count < = 1 & & ( item . Languages ? . SingleOrDefault ( ) ? ? Language . Unknown ) = = Language . Unknown & &
processedItem . Languages . Any ( ) )
// Only set the language/quality if they're unknown and languages were returned.
if ( item . Languages ? . Count < = 1 & & ( item . Languages ? . SingleOrDefault ( ) ? ? Language . Unknown ) = = Language . Unknown & & processedItem . Languages . Any ( ) )
{
item . Languages = processedItem . Languages ;
}