Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions app/javascript/mastodon/components/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,7 @@ class Status extends ImmutablePureComponent {
);
}

if (otherAccounts) {
statusAvatar = <AvatarComposite accounts={otherAccounts} size={48} />;
} else if (account === undefined || account === null) {
if (account === undefined || account === null) {
Comment thread
fvh-P marked this conversation as resolved.
Outdated
if (status.get('visibility') === 'public') {
statusAvatar = <Avatar account={status.get('account')} size={48} />;
} else {
Expand Down