Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/99336595b0be45348650daa4c2325cbe81b26c54
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
2 additions and
8 deletions
@ -365,11 +365,6 @@ namespace NzbDrone.Common.Disk
}
public void SetFolderWriteTime ( string path , DateTime time )
{
Directory . SetLastWriteTimeUtc ( path , time ) ;
}
private static void RemoveReadOnly ( string path )
{
if ( File . Exists ( path ) )
@ -37,7 +37,6 @@ namespace NzbDrone.Common.Disk
string GetPathRoot ( string path ) ;
string GetParentFolder ( string path ) ;
void SetPermissions ( string filename , WellKnownSidType accountSid , FileSystemRights rights , AccessControlType controlType ) ;
void SetFolderWriteTime ( string path , DateTime time ) ;
FileAttributes GetFileAttributes ( string path ) ;
void EmptyFolder ( string path ) ;
string [ ] GetFixedDrives ( ) ;
@ -98,14 +98,14 @@ namespace NzbDrone.Core.MediaFiles
try
{
_logger . Trace ( "Setting last write time on series folder: {0}" , series . Path ) ;
_diskProvider . Set FolderWriteTime( series . Path , episodeFile . DateAdded ) ;
_diskProvider . FolderSetLast WriteTimeUtc ( series . Path , episodeFile . DateAdded ) ;
if ( series . SeasonFolder )
{
var seasonFolder = Path . GetDirectoryName ( destinationFilename ) ;
_logger . Trace ( "Setting last write time on season folder: {0}" , seasonFolder ) ;
_diskProvider . Set FolderWriteTime( seasonFolder , episodeFile . DateAdded ) ;
_diskProvider . FolderSetLast WriteTimeUtc ( seasonFolder , episodeFile . DateAdded ) ;
}
}