This check shouldn't be here with the ||

pull/1612/head
David Baker 2016-06-09 10:25:49 +01:00
parent 24602119c5
commit f595f6f141
1 changed files with 1 additions and 3 deletions

View File

@ -119,9 +119,7 @@ module.exports = React.createClass({
var emailPusherPromise; var emailPusherPromise;
if (event.target.checked) { if (event.target.checked) {
var data = {} var data = {}
if (this.props.brand) {
data['brand'] = this.props.brand || 'Vector'; data['brand'] = this.props.brand || 'Vector';
}
emailPusherPromise = UserSettingsStore.addEmailPusher(address, data); emailPusherPromise = UserSettingsStore.addEmailPusher(address, data);
} else { } else {
var emailPusher = UserSettingsStore.getEmailPusher(this.state.pushers, address); var emailPusher = UserSettingsStore.getEmailPusher(this.state.pushers, address);