Merge pull request #439 from hjumeau/master
[auth][unlink] Call native function instead of 'FirebaseAuth'
This commit is contained in:
commit
1d3db123d6
|
@ -120,7 +120,7 @@ export default class User {
|
||||||
* @return {Promise.<TResult>|*}
|
* @return {Promise.<TResult>|*}
|
||||||
*/
|
*/
|
||||||
unlink(providerId: string) {
|
unlink(providerId: string) {
|
||||||
return this._auth._interceptUserValue(FirebaseAuth.unlink(providerId));
|
return this._auth._interceptUserValue(this._auth._native.unlink(providerId));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue