Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/7071cf829ac3f55702a3399497d1faef627c70cd?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
6 additions and
6 deletions
@ -52,14 +52,14 @@ namespace NzbDrone.Common
return File . Exists ( path ) ;
}
public virtual IEnumerable < string > GetDirectories ( string path )
public virtual string [ ] GetDirectories ( string path )
{
return Directory . Enumerate Directories( path ) ;
return Directory . Get Directories( path ) ;
}
public virtual IEnumerable < string > GetFiles ( string path , SearchOption searchOption )
public virtual string [ ] GetFiles ( string path , SearchOption searchOption )
{
return Directory . Enumerate Files( path , "*.*" , searchOption ) ;
return Directory . Get Files( path , "*.*" , searchOption ) ;
}
public virtual long GetDirectorySize ( string path )
@ -267,7 +267,7 @@ namespace NzbDrone.Core.Test.ProviderTests.PostDownloadProviderTests
[Test]
public void ProcessDropFolder_should_only_process_folders_that_arent_known_series_folders ( )
{
var subFolders = new List < string >
var subFolders = new [ ]
{
@"c:\drop\episode1" ,
@"c:\drop\episode2" ,
@ -23,7 +23,7 @@ namespace NzbDrone.Core.Test.ProviderTests.UpdateProviderTests
Mocker . GetMock < DiskProvider > ( )
. Setup ( c = > c . GetFiles ( UpdateLogFolder , SearchOption . TopDirectoryOnly ) )
. Returns ( new List < string >
. Returns ( new [ ]
{
"C:\\nzbdrone\\update\\2011.09.20-19-08.txt" ,
"C:\\nzbdrone\\update\\2011.10.20-20-08.txt" ,