fix web app crash when logging into a fresh account

staging
multiple creatures 2019-08-03 02:13:28 -05:00
parent f0094fd143
commit 99d1b1ff6f
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ class ComposeForm extends ImmutablePureComponent {
} = this.props;
let disabledButton = isSubmitting || isUploading || isChangingUpload || (!text.trim().length && !anyMedia);
let nickname = this.props.account.get('identity');
let nickname = (this.props.account !== undefined) ? this.props.account.get('identity') : '';
return (
<div className='composer'>