Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/d884914c813f69c749537d067b18f8b7ea9510f3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
3 deletions
@ -81,8 +81,8 @@ namespace NzbDrone.Mono.Disk
. Concat ( GetDriveInfoMounts ( )
. Select ( d = > new DriveInfoMount ( d , FindDriveType . Find ( d . DriveFormat ) ) )
. Where ( d = > d . DriveType = = DriveType . Fixed | |
d . DriveType = = DriveType . Network | | d . DriveType = =
DriveType. Removable ) )
d . DriveType = = DriveType . Network | |
d. DriveType = = DriveType. Removable ) )
. DistinctBy ( v = > v . RootDirectory )
. ToList ( ) ;
}
@ -1,4 +1,4 @@
using System.Collections.Generic ;
using System.Collections.Generic ;
using System.IO ;
using NzbDrone.Common.Extensions ;
@ -9,6 +9,7 @@ namespace NzbDrone.Mono.Disk
private static readonly Dictionary < string , DriveType > DriveTypeMap = new Dictionary < string , DriveType >
{
{ "afpfs" , DriveType . Network } ,
{ "apfs" , DriveType . Fixed } ,
{ "zfs" , DriveType . Fixed }
} ;