mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-29 12:05:38 +00:00
Fix for key not found, returning a generic error instead
This commit is contained in:
@@ -83,16 +83,23 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation.Responses
|
||||
{
|
||||
return AuthMessages[Code];
|
||||
}
|
||||
|
||||
if (api == DiskStationApi.DownloadStationTask && DownloadStationTaskMessages.ContainsKey(Code))
|
||||
{
|
||||
return DownloadStationTaskMessages[Code];
|
||||
}
|
||||
|
||||
if (api == DiskStationApi.FileStationList && FileStationMessages.ContainsKey(Code))
|
||||
{
|
||||
return FileStationMessages[Code];
|
||||
}
|
||||
|
||||
return CommonMessages[Code];
|
||||
if (CommonMessages.ContainsKey(Code))
|
||||
{
|
||||
return CommonMessages[Code];
|
||||
}
|
||||
|
||||
return $"{ Code } - Unknown error";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user