Verified: Use getIn in display_name.js

merge-requests/155/head
Alex Gleason 4 years ago
parent f7f0439e72
commit aec44bfea6

@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import VerificationBadge from './verification_badge';
import { acctFull } from '../utils/accounts';
import { List as ImmutableList } from 'immutable';
export default class DisplayName extends React.PureComponent {
@ -16,7 +17,7 @@ export default class DisplayName extends React.PureComponent {
const { account, others, children } = this.props;
let displayName, suffix;
const verified = account.get('pleroma').get('tags').includes('verified');
const verified = account.getIn(['pleroma', 'tags'], ImmutableList()).includes('verified');
if (others && others.size > 1) {
displayName = others.take(2).map(a => [

Loading…
Cancel
Save