Skip to content

Commit

Permalink
Fixed: Properly handle 119 error code from Synology Download Station
Browse files Browse the repository at this point in the history
(cherry picked from commit 3be5d6c258bd947ae4c4d895b2f54faa5a7a222b)
  • Loading branch information
margaale authored and bakerboy448 committed Apr 6, 2022
1 parent f341714 commit 68f017c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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)
{
Expand Down

0 comments on commit 68f017c

Please sign in to comment.