Default 500 max_toot_chars

This commit is contained in:
Alex Gleason 2020-04-01 17:29:11 -05:00
parent 25c028e541
commit 88b807e9d2
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -34,7 +34,7 @@ const messages = defineMessages({
const mapStateToProps = state => {
return {
maxTootChars: state.getIn(['instance', 'max_toot_chars']),
maxTootChars: state.getIn(['instance', 'max_toot_chars']) || 500,
};
};