Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/9916479f027bf1a909d3ad12f6aea22d1a137970
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
29 additions and
2 deletions
@ -1,6 +1,7 @@
using System ;
using System.IO ;
using System.Linq ;
using System.Collections.Generic ;
using FizzWare.NBuilder ;
using FluentAssertions ;
using Moq ;
@ -12,7 +13,7 @@ using NzbDrone.Core.Download.Clients.Sabnzbd.Responses;
using NzbDrone.Core.Parser.Model ;
using NzbDrone.Core.Test.Framework ;
using NzbDrone.Core.Tv ;
using System.Collections.Generic ;
using NzbDrone.Test.Common ;
namespace NzbDrone.Core.Test.Download.DownloadClientTests.SabnzbdTests
{
@ -254,5 +255,18 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.SabnzbdTests
Mocker . GetMock < ISabnzbdProxy > ( )
. Verify ( v = > v . DownloadNzb ( It . IsAny < Stream > ( ) , It . IsAny < String > ( ) , It . IsAny < String > ( ) , ( int ) SabnzbdPriority . High , It . IsAny < SabnzbdSettings > ( ) ) , Times . Once ( ) ) ;
}
[Test]
public void should_return_path_to_folder_instead_of_file ( )
{
_completed . Items . First ( ) . Storage = @"C:\sorted\Droned.S01E01.Pilot.1080p.WEB-DL-DRONE\Droned.S01E01_Pilot_1080p_WEB-DL-DRONE.mkv" . AsOsAgnostic ( ) ;
WithQueue ( null ) ;
WithHistory ( _completed ) ;
var result = Subject . GetItems ( ) . Single ( ) ;
result . OutputPath . Should ( ) . Be ( @"C:\sorted\Droned.S01E01.Pilot.1080p.WEB-DL-DRONE" . AsOsAgnostic ( ) ) ;
}
}
}
@ -1,4 +1,5 @@
using System ;
using System.IO ;
using System.Collections.Generic ;
using System.Linq ;
using NLog ;
@ -142,7 +143,6 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
DownloadTime = TimeSpan . FromSeconds ( sabHistoryItem . DownloadTime ) ,
RemainingTime = TimeSpan . Zero ,
OutputPath = sabHistoryItem . Storage ,
Message = sabHistoryItem . FailMessage
} ;
@ -159,6 +159,19 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
historyItem . Status = DownloadItemStatus . Downloading ;
}
if ( ! sabHistoryItem . Storage . IsNullOrWhiteSpace ( ) )
{
var parent = Directory . GetParent ( sabHistoryItem . Storage ) ;
if ( parent . Name = = sabHistoryItem . Title )
{
historyItem . OutputPath = parent . FullName ;
}
else
{
historyItem . OutputPath = sabHistoryItem . Storage ;
}
}
historyItems . Add ( historyItem ) ;
}