Fix incorrect detection of local vs remote user in web UI

th-downstream
Eugen Rochko 8 years ago
parent 4aa152f18f
commit 9454f2baff

@ -63,7 +63,7 @@ const ActionBar = React.createClass({
menu.push({ text: intl.formatMessage(messages.report, { name: account.get('username') }), action: this.props.onReport });
}
if (account.get('domain') !== null) {
if (account.get('acct') !== account.get('username')) {
extraInfo = <abbr title={intl.formatMessage(messages.disclaimer)}>*</abbr>;
}

Loading…
Cancel
Save