diff options
| -rw-r--r-- | ui/app/components/main_panel/email_section.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ui/app/components/main_panel/email_section.js b/ui/app/components/main_panel/email_section.js index e48b8e27..e382c9d8 100644 --- a/ui/app/components/main_panel/email_section.js +++ b/ui/app/components/main_panel/email_section.js @@ -78,7 +78,7 @@ export default class EmailSection extends React.Component {      for (let event of events) {        bitmask.events.register(event, this.logEvent)      } -    bitmask.mail.status().then(status => { +    bitmask.mail.status(this.props.account.id).then(status => {        this.setState({          status: status.status,          error: status.error | 
