mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-24 19:52:39 +01:00
Fixed: Properly handle 119 error code from Synology Download Station
This commit is contained in:
parent
40ecdbc12d
commit
3be5d6c258
@ -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)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user