1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

hint page

This commit is contained in:
Kyle Spearrin
2019-05-01 15:53:56 -04:00
parent 9678eab43f
commit 15cda95c64
7 changed files with 131 additions and 2 deletions

View File

@@ -345,7 +345,7 @@ namespace Bit.Core.Services
var responseJsonString = await response.Content.ReadAsStringAsync();
return JsonConvert.DeserializeObject<TResponse>(responseJsonString);
}
else if(response.IsSuccessStatusCode)
else if(!response.IsSuccessStatusCode)
{
var error = await HandleErrorAsync(response, false);
throw new ApiException(error);