From dc5c997e9b8bca9d6a727a43261219ad9aba7876 Mon Sep 17 00:00:00 2001 From: Marcelo Castagna Date: Tue, 5 Apr 2022 21:22:37 -0300 Subject: [PATCH] Fixed: Properly handle 119 error code from Synology Download Station (cherry picked from commit 3be5d6c258bd947ae4c4d895b2f54faa5a7a222b) --- .../Clients/DownloadStation/Responses/DiskStationError.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/DownloadStation/Responses/DiskStationError.cs b/src/NzbDrone.Core/Download/Clients/DownloadStation/Responses/DiskStationError.cs index 48b601b01..c3f9b1090 100644 --- a/src/NzbDrone.Core/Download/Clients/DownloadStation/Responses/DiskStationError.cs +++ b/src/NzbDrone.Core/Download/Clients/DownloadStation/Responses/DiskStationError.cs @@ -82,7 +82,7 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation.Responses public int Code { get; set; } - public bool SessionError => Code == 105 || Code == 106 || Code == 107; + public bool SessionError => Code == 105 || Code == 106 || Code == 107 || Code == 119; public string GetMessage(DiskStationApi api) {