Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/72de94308baed68a61ffab41b0143dda9c3a63b3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
4 deletions
@ -68,7 +68,7 @@ namespace NzbDrone.Core.MediaFiles
_logger . Debug ( "Renaming book file: {0} to {1}" , bookFile , filePath ) ;
return TransferFile ( bookFile , author , null , filePath , TransferMode . Move ) ;
return TransferFile ( bookFile , author , bookFile . Edition . Value . Book . Value , filePath , TransferMode . Move ) ;
}
public BookFile MoveBookFile ( BookFile bookFile , LocalBook localBook )
@ -80,7 +80,7 @@ namespace NzbDrone.Core.MediaFiles
_logger . Debug ( "Moving book file: {0} to {1}" , bookFile . Path , filePath ) ;
return TransferFile ( bookFile , localBook . Author , null , filePath , TransferMode . Move ) ;
return TransferFile ( bookFile , localBook . Author , localBook . Book , filePath , TransferMode . Move ) ;
}
public BookFile CopyBookFile ( BookFile bookFile , LocalBook localBook )
@ -17,7 +17,7 @@ namespace NzbDrone.Core.MediaFiles
void ChangeFileDateForFile ( BookFile bookFile , Author author , Book book ) ;
}
public class Update Trac kFileService : IUpdateBookFileService ,
public class Update Boo kFileService : IUpdateBookFileService ,
IHandle < AuthorScannedEvent >
{
private readonly IDiskProvider _diskProvider ;
@ -26,7 +26,7 @@ namespace NzbDrone.Core.MediaFiles
private readonly Logger _logger ;
private static readonly DateTime EpochTime = new DateTime ( 1970 , 1 , 1 , 0 , 0 , 0 , DateTimeKind . Utc ) ;
public Update Trac kFileService( IDiskProvider diskProvider ,
public Update Boo kFileService( IDiskProvider diskProvider ,
IConfigService configService ,
IBookService bookService ,
Logger logger )