From 309807c676262b55df53c8b03914580d5ac98064 Mon Sep 17 00:00:00 2001 From: Gregor Date: Mon, 18 Jul 2016 11:26:35 -0700 Subject: [PATCH] fix: account.profile.fetch() resolves with profile properties --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 6759727..c5ef7aa 100644 --- a/index.js +++ b/index.js @@ -31,7 +31,7 @@ function Account (options) { update: require('./lib/update').bind(null, state), profile: { get: require('./lib/profile-get').bind(null, state), - fetch: require('./lib/profile-fetch').bind(null, state, 'account.profile'), + fetch: require('./lib/profile-fetch').bind(null, state), update: require('./lib/profile-update').bind(null, state) }, request: require('./lib/request').bind(null, state),