Skip to content

Commit

Permalink
fix(firebase_auth): Fix forceRefresh parameter conversion before call…
Browse files Browse the repository at this point in the history
…ing native API (#11464)
  • Loading branch information
liuzs0666 committed Aug 16, 2023
1 parent a3a0776 commit 8663987
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ - (void)getIdTokenApp:(nonnull PigeonFirebaseApp *)app
}

[currentUser
getIDTokenResultForcingRefresh:forceRefresh
getIDTokenResultForcingRefresh:[forceRefresh boolValue]
completion:^(FIRAuthTokenResult *tokenResult, NSError *error) {
if (error != nil) {
completion(nil, [FLTFirebaseAuthPlugin convertToFlutterError:error]);
Expand Down

0 comments on commit 8663987

Please sign in to comment.