[auth] fix incorrect arguments

This commit is contained in:
Salakar 2017-09-30 20:07:00 +01:00
parent cf442e53d2
commit d7a832b7c7
1 changed files with 6 additions and 6 deletions

View File

@ -173,12 +173,12 @@ export default class PhoneAuthListener {
/**
* Internal code sent event handler
* @param verificationId
* @private
* @param credential
*/
_codeSentHandler(verificationId) {
_codeSentHandler(credential) {
const snapshot: PhoneAuthSnapshot = {
verificationId,
verificationId: credential.verificationId,
code: null,
error: null,
state: 'sent',
@ -198,12 +198,12 @@ export default class PhoneAuthListener {
/**
* Internal code auto retrieve timeout event handler
* @param verificationId
* @private
* @param credential
*/
_codeAutoRetrievalTimeoutHandler(verificationId) {
_codeAutoRetrievalTimeoutHandler(credential) {
const snapshot: PhoneAuthSnapshot = {
verificationId,
verificationId: credential.verificationId,
code: null,
error: null,
state: 'timeout',