1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-30 15:58:28 +09:00

Read max_toot_chars from root object. Fixes #297.

max_toot_chars is present in the root of the initial state object.
(Previously, we were trying to read it from the meta child object.)
This commit is contained in:
David Yip 2018-01-06 03:01:11 -06:00
parent 6932b464e6
commit 2eed4ace11
No known key found for this signature in database
GPG Key ID: 7DA0036508FCC0CC

View File

@ -18,6 +18,6 @@ export const boostModal = getMeta('boost_modal');
export const favouriteModal = getMeta('favourite_modal');
export const deleteModal = getMeta('delete_modal');
export const me = getMeta('me');
export const maxChars = getMeta('max_toot_chars') || 500;
export const maxChars = initialState['max_toot_chars'] || 500;
export default initialState;