Fix the conditions for incomplete remote content (#14195)
This commit is contained in:
		@@ -22,7 +22,7 @@ const mapStateToProps = (state, { params: { accountId }, withReplies = false })
 | 
			
		||||
  const path = withReplies ? `${accountId}:with_replies` : accountId;
 | 
			
		||||
 | 
			
		||||
  return {
 | 
			
		||||
    remote: !!state.getIn(['accounts', accountId, 'acct']) !== state.getIn(['accounts', accountId, 'username']),
 | 
			
		||||
    remote: !!(state.getIn(['accounts', accountId, 'acct']) !== state.getIn(['accounts', accountId, 'username'])),
 | 
			
		||||
    remoteUrl: state.getIn(['accounts', accountId, 'url']),
 | 
			
		||||
    isAccount: !!state.getIn(['accounts', accountId]),
 | 
			
		||||
    statusIds: state.getIn(['timelines', `account:${path}`, 'items'], emptyList),
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,7 @@ import MissingIndicator from 'mastodon/components/missing_indicator';
 | 
			
		||||
import TimelineHint from 'mastodon/components/timeline_hint';
 | 
			
		||||
 | 
			
		||||
const mapStateToProps = (state, props) => ({
 | 
			
		||||
  remote: !!state.getIn(['accounts', props.params.accountId, 'acct']) !== state.getIn(['accounts', props.params.accountId, 'username']),
 | 
			
		||||
  remote: !!(state.getIn(['accounts', props.params.accountId, 'acct']) !== state.getIn(['accounts', props.params.accountId, 'username'])),
 | 
			
		||||
  remoteUrl: state.getIn(['accounts', props.params.accountId, 'url']),
 | 
			
		||||
  isAccount: !!state.getIn(['accounts', props.params.accountId]),
 | 
			
		||||
  accountIds: state.getIn(['user_lists', 'followers', props.params.accountId, 'items']),
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,7 @@ import MissingIndicator from 'mastodon/components/missing_indicator';
 | 
			
		||||
import TimelineHint from 'mastodon/components/timeline_hint';
 | 
			
		||||
 | 
			
		||||
const mapStateToProps = (state, props) => ({
 | 
			
		||||
  remote: !!state.getIn(['accounts', props.params.accountId, 'acct']) !== state.getIn(['accounts', props.params.accountId, 'username']),
 | 
			
		||||
  remote: !!(state.getIn(['accounts', props.params.accountId, 'acct']) !== state.getIn(['accounts', props.params.accountId, 'username'])),
 | 
			
		||||
  remoteUrl: state.getIn(['accounts', props.params.accountId, 'url']),
 | 
			
		||||
  isAccount: !!state.getIn(['accounts', props.params.accountId]),
 | 
			
		||||
  accountIds: state.getIn(['user_lists', 'following', props.params.accountId, 'items']),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user