Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/97fa0ef0d309bf5d6f0d6b921567e0a189900a5d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
26 additions and
2 deletions
@ -1,5 +1,6 @@
using System ;
using System.Collections.Generic ;
using System.IO ;
using System.Linq ;
using System.Net ;
using System.Text ;
@ -67,6 +68,15 @@ namespace NzbDrone.Core.Test.ProviderTests.DownloadClientTests
ExceptionVerification . ExpectedWarns ( 1 ) ;
}
[Test]
public void should_replace_illegal_characters_in_title ( )
{
var illegalTitle = "Saturday Night Live - S38E08 - Jeremy Renner/Maroon 5 [SDTV]" ;
var expectedFilename = Path . Combine ( blackHoleFolder , "Saturday Night Live - S38E08 - Jeremy Renner+Maroon 5 [SDTV].nzb" ) ;
Mocker . Resolve < BlackholeProvider > ( ) . DownloadNzb ( nzbUrl , illegalTitle ) . Should ( ) . BeTrue ( ) ;
Mocker . GetMock < HttpProvider > ( ) . Verify ( c = > c . DownloadFile ( It . IsAny < string > ( ) , expectedFilename ) , Times . Once ( ) ) ;
}
}
}
@ -1,5 +1,6 @@
using System ;
using System.Collections.Generic ;
using System.IO ;
using System.Linq ;
using System.Net ;
using System.Text ;
@ -75,5 +76,16 @@ namespace NzbDrone.Core.Test.ProviderTests.DownloadClientTests
{
Mocker . Resolve < PneumaticProvider > ( ) . DownloadNzb ( nzbUrl , "30 Rock - Season 1" ) . Should ( ) . BeFalse ( ) ;
}
[Test]
public void should_replace_illegal_characters_in_title ( )
{
var illegalTitle = "Saturday Night Live - S38E08 - Jeremy Renner/Maroon 5 [SDTV]" ;
var expectedFilename = Path . Combine ( pneumaticFolder , "Saturday Night Live - S38E08 - Jeremy Renner+Maroon 5 [SDTV].nzb" ) ;
Mocker . Resolve < PneumaticProvider > ( ) . DownloadNzb ( nzbUrl , illegalTitle ) . Should ( ) . BeTrue ( ) ;
Mocker . GetMock < HttpProvider > ( ) . Verify ( c = > c . DownloadFile ( It . IsAny < string > ( ) , expectedFilename ) , Times . Once ( ) ) ;
}
}
}
@ -38,6 +38,8 @@ namespace NzbDrone.Core.Providers.DownloadClients
{
try
{
title = MediaFileProvider . CleanFilename ( title ) ;
var filename = Path . Combine ( _configProvider . BlackholeDirectory , title + ".nzb" ) ;
if ( _diskProvider . FileExists ( filename ) )
@ -64,7 +66,5 @@ namespace NzbDrone.Core.Providers.DownloadClients
{
return ! _upgradeHistorySpecification . IsSatisfiedBy ( newParseResult ) ;
}
}
}
@ -44,6 +44,8 @@ namespace NzbDrone.Core.Providers.DownloadClients
return false ;
}
title = MediaFileProvider . CleanFilename ( title ) ;
//Save to the Pneumatic directory (The user will need to ensure its accessible by XBMC)
var filename = Path . Combine ( _configProvider . PneumaticDirectory , title + ".nzb" ) ;