Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/c708b5ce1a8e67a721d1cf8389270afcba13794b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
13 additions and
8 deletions
@ -3,6 +3,7 @@ using System.IO;
using System.Linq ;
using NLog ;
using NzbDrone.Common ;
using NzbDrone.Common.EnvironmentInfo ;
using NzbDrone.Core.Messaging.Events ;
using NzbDrone.Core.Organizer ;
using NzbDrone.Core.Parser.Model ;
@ -84,15 +85,19 @@ namespace NzbDrone.Core.MediaFiles
_diskProvider . SetFolderWriteTime ( seasonFolder , episodeFile . DateAdded ) ;
}
//W rapped in Try/Catch to prevent this from causing issues with remote NAS boxes, the move worked, which is more important.
try
//W e should only run this on Windows
if ( OsInfo . IsWindows )
{
_diskProvider . InheritFolderPermissions ( destinationFilename ) ;
}
catch ( UnauthorizedAccessException ex )
{
_logger . Debug ( "Unable to apply folder permissions to: " , destinationFilename ) ;
_logger . TraceException ( ex . Message , ex ) ;
//Wrapped in Try/Catch to prevent this from causing issues with remote NAS boxes, the move worked, which is more important.
try
{
_diskProvider . InheritFolderPermissions ( destinationFilename ) ;
}
catch ( UnauthorizedAccessException ex )
{
_logger . Debug ( "Unable to apply folder permissions to: " , destinationFilename ) ;
_logger . TraceException ( ex . Message , ex ) ;
}
}
}
}