We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bba0a27 commit 13d2519Copy full SHA for 13d2519
android/src/main/java/com/rnappauth/utils/TokenResponseFactory.java
@@ -16,7 +16,7 @@ private static final WritableArray createScopeArray(String scope) {
16
if (!TextUtils.isEmpty(scope)) {
17
String[] scopesArray = scope.split(" ");
18
19
- for( int i = 0; i < scopesArray.length - 1; i++)
+ for( int i = 0; i < scopesArray.length; i++)
20
{
21
scopeArray.pushString(scopesArray[i]);
22
}
0 commit comments