Fixed: Properly handle 119 error code from Synology Download Station

This commit is contained in:
Marcelo Castagna 2022-04-05 21:22:37 -03:00 committed by GitHub
parent 40ecdbc12d
commit 3be5d6c258
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{