From 76781479b6cd436b091d71c96b6adb69386f2466 Mon Sep 17 00:00:00 2001 From: hjumeau Date: Sat, 23 Sep 2017 23:34:40 +0200 Subject: [PATCH] [auth][unlink] Call native function instead of 'FirebaseAuth' --- lib/modules/auth/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/auth/user.js b/lib/modules/auth/user.js index 95f64206..2e559702 100644 --- a/lib/modules/auth/user.js +++ b/lib/modules/auth/user.js @@ -120,7 +120,7 @@ export default class User { * @return {Promise.|*} */ unlink(providerId: string) { - return this._auth._interceptUserValue(FirebaseAuth.unlink(providerId)); + return this._auth._interceptUserValue(this._auth._native.unlink(providerId)); } /**