@BeAware I'm using the glitch-soc version of Mastodon. Something it does is that it can let you set these character limits through environment variables easily, including for the bio specifically, the number of fields you can have in your bio and more.
Conversation
Notices
-
Embed this notice
j (jay@toot.zerojay.com)'s status on Wednesday, 22-May-2024 00:24:19 JST j - BeAware :fediverse: repeated this.
-
Embed this notice
Cadu Silva :verified: (cadusilva@bolha.one)'s status on Wednesday, 22-May-2024 00:44:53 JST Cadu Silva :verified: @BeAware here you go:
```
sed -i "s#note_length: { maximum: 500#note_length: { maximum: 800#g" $WDIR/app/models/account.rb
sed -i "s#input_html: { maxlength: 500#input_html: { maxlength: 800#g" $WDIR/app/views/settings/profiles/show.html.haml
```Set $WDIR to the folder where Mastodon is installed.
-
Embed this notice
j (jay@toot.zerojay.com)'s status on Wednesday, 22-May-2024 21:27:12 JST j Some of the changes I made in my .env file for glitch-soc:
# Maximum allowed character count
MAX_TOOT_CHARS=10000# Maximum number of pinned posts
MAX_PINNED_TOOTS=10# Maximum allowed bio characters
MAX_BIO_CHARS=10000# Maximim number of profile fields allowed
MAX_PROFILE_FIELDS=10# Maximum allowed display name characters
MAX_DISPLAY_NAME_CHARS=50# Maximum allowed poll options
MAX_POLL_OPTIONS=10# Maximum allowed poll option characters
MAX_POLL_OPTION_CHARS=200