signInWithVerificationId parameter mismatch (#3354)

by.chemerisuk.cordova.firebase.FirebaseAuthenticationPlugin.signInWithVerificationId argument 2 has type java.lang.String, got java.lang.Integer

smsCode has to be string instead of number
This commit is contained in:
xtarx 2020-04-15 21:29:46 +02:00 committed by GitHub
parent bfee712cdc
commit bb80d00f58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,7 +109,7 @@ export class FirebaseAuthentication extends IonicNativePlugin {
@Cordova({ sync: true })
signInWithVerificationId(
verificationId: string,
smsCode: number
smsCode: string
): Promise<any> {
return;
}