Skip to content

Commit

Permalink
add forgotten constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandrozerov-okta committed Feb 21, 2024
1 parent fb1b225 commit d56aab4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,10 @@ public Response intercept(Chain chain) throws IOException {

RequestFactory requestFactory = new RequestFactory(gson, client);

if(clientInfo.telemetryInfo != null) {
return new GuardianAPIClient(requestFactory, url, clientInfo.telemetryInfo);
}

return new GuardianAPIClient(requestFactory, url);
}
}
Expand Down

0 comments on commit d56aab4

Please sign in to comment.