Default 500 max_toot_chars

This commit is contained in:
Alex Gleason
2020-04-01 17:29:11 -05:00
parent 25c028e541
commit 88b807e9d2

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,
};
};