Browse Source

Update LoginCommand.cs

pull/6439/head
Yunus Emre Kalkan 6 years ago
parent
commit
6522c13a58
  1. 4
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/LoginCommand.cs

4
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/LoginCommand.cs

@ -94,9 +94,9 @@ namespace Volo.Abp.Cli.Commands
await RemoteServiceExceptionHandler.EnsureSuccessfulHttpResponseAsync(response);
var responseContent = await response.Content.ReadAsStringAsync();
var apiKeyResult = JsonSerializer.Deserialize<bool>(responseContent);
var result = JsonSerializer.Deserialize<bool>(responseContent);
return apiKeyResult;
return result;
}
}

Loading…
Cancel
Save