1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-07 04:19:25 +02:00

Fixed: Properly handle 119 error code from Synology Download Station

(cherry picked from commit 3be5d6c258bd947ae4c4d895b2f54faa5a7a222b)
This commit is contained in:
Marcelo Castagna 2022-04-05 21:22:37 -03:00 committed by bakerboy448
parent 040acbf65a
commit dc5c997e9b

View File

@ -82,7 +82,7 @@ static DiskStationError()
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)
{