From 36a1e159f3e194ab1ad6db657c8a1fe9a936f5e4 Mon Sep 17 00:00:00 2001 From: Ruben Pollan Date: Thu, 27 Jul 2017 17:01:58 +0200 Subject: [bug] update the UI to the new mail.get_token API Thanks to @simonft for all the help. - Resolves: #8980 --- ui/app/components/main_panel/imap_button.js | 6 ++---- ui/app/lib/bitmask.js | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'ui') diff --git a/ui/app/components/main_panel/imap_button.js b/ui/app/components/main_panel/imap_button.js index 3d02d3f9..122e463c 100644 --- a/ui/app/components/main_panel/imap_button.js +++ b/ui/app/components/main_panel/imap_button.js @@ -32,10 +32,8 @@ export default class IMAPButton extends React.Component { onClick() { if (!this.state.token) { - bitmask.mail.get_token().then(response => { - if (response.user == this.props.account.address) { - this.setState({token: response.token}) - } + bitmask.mail.get_token(this.props.account.id).then(response => { + this.setState({token: response.token}) }) } this.setState({showModal: true}) diff --git a/ui/app/lib/bitmask.js b/ui/app/lib/bitmask.js index b8d6a953..bfdf0501 100644 --- a/ui/app/lib/bitmask.js +++ b/ui/app/lib/bitmask.js @@ -318,7 +318,7 @@ var bitmask = function(){ * * @param {string} uid The uid to get status about * - * @return {Promise} The token + * @return {Promise<{'token': string}>} The token */ get_token: function(uid) { return call(['mail', 'get_token', uid]); -- cgit v1.2.3