update: max_media_attachments follow server advertised value (#31616)
This commit is contained in:
		
							parent
							
								
									26d6d291c3
								
							
						
					
					
						commit
						3c412578c9
					
				@ -85,7 +85,7 @@ const mapStateToProps = state => ({
 | 
				
			|||||||
  isComposing: state.getIn(['compose', 'is_composing']),
 | 
					  isComposing: state.getIn(['compose', 'is_composing']),
 | 
				
			||||||
  hasComposingText: state.getIn(['compose', 'text']).trim().length !== 0,
 | 
					  hasComposingText: state.getIn(['compose', 'text']).trim().length !== 0,
 | 
				
			||||||
  hasMediaAttachments: state.getIn(['compose', 'media_attachments']).size > 0,
 | 
					  hasMediaAttachments: state.getIn(['compose', 'media_attachments']).size > 0,
 | 
				
			||||||
  canUploadMore: !state.getIn(['compose', 'media_attachments']).some(x => ['audio', 'video'].includes(x.get('type'))) && state.getIn(['compose', 'media_attachments']).size < 4,
 | 
					  canUploadMore: !state.getIn(['compose', 'media_attachments']).some(x => ['audio', 'video'].includes(x.get('type'))) && state.getIn(['compose', 'media_attachments']).size < state.getIn(['server', 'server', 'configuration', 'statuses', 'max_media_attachments']),
 | 
				
			||||||
  firstLaunch: state.getIn(['settings', 'introductionVersion'], 0) < INTRODUCTION_VERSION,
 | 
					  firstLaunch: state.getIn(['settings', 'introductionVersion'], 0) < INTRODUCTION_VERSION,
 | 
				
			||||||
  username: state.getIn(['accounts', me, 'username']),
 | 
					  username: state.getIn(['accounts', me, 'username']),
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user