2
0
mirror of synced 2025-02-17 08:46:43 +00:00

[auth][unlink] Call native function instead of 'FirebaseAuth'

This commit is contained in:
hjumeau 2017-09-23 23:34:40 +02:00 committed by GitHub
parent 83faa86333
commit 76781479b6

View File

@ -120,7 +120,7 @@ export default class User {
* @return {Promise.<TResult>|*}
*/
unlink(providerId: string) {
return this._auth._interceptUserValue(FirebaseAuth.unlink(providerId));
return this._auth._interceptUserValue(this._auth._native.unlink(providerId));
}
/**