Skip to content

Commit

Permalink
fix token, issuer not set
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmann committed Jun 15, 2021
1 parent cefcd99 commit 1f01289
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions liboidcagent.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ func parseIpcResponse(remote bool, response []byte) (res TokenResponse, err erro
return
}
res = TokenResponse{
Token: res.Token,
Issuer: res.Issuer,
Token: rawResponse.Token,
Issuer: rawResponse.Issuer,
ExpiresAt: time.Unix(rawResponse.ExpiresAt, 0),
}
return
Expand Down

0 comments on commit 1f01289

Please sign in to comment.