Skip to content

Commit 463bfed

Browse files
authored
Use correct clientSecret param in refresh
1 parent d3407aa commit 463bfed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/com/reactlibrary/RNAppAuthModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ public void onTokenRequestCompleted(@Nullable TokenResponse response, @Nullable
354354

355355

356356
if (clientSecret != null) {
357-
ClientAuthentication clientAuth = new ClientSecretBasic(this.clientSecret);
357+
ClientAuthentication clientAuth = new ClientSecretBasic(clientSecret);
358358
authService.performTokenRequest(tokenRequest, clientAuth, tokenResponseCallback);
359359

360360
} else {

0 commit comments

Comments
 (0)