Skip to content

Commit

Permalink
fix: client request in config service (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
k3llymariee authored May 29, 2024
1 parent 03d71e3 commit bc15520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/config/config_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func (s Service) VerifyAccessToken(accessToken string, baseURI string) bool {
baseURI,
)

_, err := s.client.MakeRequest(accessToken, "HEAD", path, "application/json", nil, nil)
_, err := s.client.MakeRequest(accessToken, "HEAD", path, "application/json", nil, nil, false)

return err == nil
}

0 comments on commit bc15520

Please sign in to comment.