[Glitch] Fix the conditions for incomplete remote content
Port 7548a474a5 to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
			
			
This commit is contained in:
		
							parent
							
								
									9d127e15ff
								
							
						
					
					
						commit
						1c8eb9bcf7
					
				
					 3 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -21,7 +21,7 @@ const mapStateToProps = (state, { params: { accountId }, withReplies = false })
 | 
				
			||||||
  const path = withReplies ? `${accountId}:with_replies` : accountId;
 | 
					  const path = withReplies ? `${accountId}:with_replies` : accountId;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  return {
 | 
					  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']),
 | 
					    remoteUrl: state.getIn(['accounts', accountId, 'url']),
 | 
				
			||||||
    isAccount: !!state.getIn(['accounts', accountId]),
 | 
					    isAccount: !!state.getIn(['accounts', accountId]),
 | 
				
			||||||
    statusIds: state.getIn(['timelines', `account:${path}`, 'items'], ImmutableList()),
 | 
					    statusIds: state.getIn(['timelines', `account:${path}`, 'items'], ImmutableList()),
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,7 +20,7 @@ import ScrollableList from 'flavours/glitch/components/scrollable_list';
 | 
				
			||||||
import TimelineHint from 'flavours/glitch/components/timeline_hint';
 | 
					import TimelineHint from 'flavours/glitch/components/timeline_hint';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const mapStateToProps = (state, props) => ({
 | 
					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']),
 | 
					  remoteUrl: state.getIn(['accounts', props.params.accountId, 'url']),
 | 
				
			||||||
  isAccount: !!state.getIn(['accounts', props.params.accountId]),
 | 
					  isAccount: !!state.getIn(['accounts', props.params.accountId]),
 | 
				
			||||||
  accountIds: state.getIn(['user_lists', 'followers', props.params.accountId, 'items']),
 | 
					  accountIds: state.getIn(['user_lists', 'followers', props.params.accountId, 'items']),
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,7 +20,7 @@ import ScrollableList from 'flavours/glitch/components/scrollable_list';
 | 
				
			||||||
import TimelineHint from 'flavours/glitch/components/timeline_hint';
 | 
					import TimelineHint from 'flavours/glitch/components/timeline_hint';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const mapStateToProps = (state, props) => ({
 | 
					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']),
 | 
					  remoteUrl: state.getIn(['accounts', props.params.accountId, 'url']),
 | 
				
			||||||
  isAccount: !!state.getIn(['accounts', props.params.accountId]),
 | 
					  isAccount: !!state.getIn(['accounts', props.params.accountId]),
 | 
				
			||||||
  accountIds: state.getIn(['user_lists', 'following', props.params.accountId, 'items']),
 | 
					  accountIds: state.getIn(['user_lists', 'following', props.params.accountId, 'items']),
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue