mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
Fixed: Properly handle 119 error code from Synology Download Station
(cherry picked from commit 3be5d6c258bd947ae4c4d895b2f54faa5a7a222b)
This commit is contained in:
committed by
bakerboy448
parent
f34171444e
commit
68f017cd84
@@ -82,7 +82,7 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation.Responses
|
|||||||
|
|
||||||
public int Code { get; set; }
|
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)
|
public string GetMessage(DiskStationApi api)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user