increase default poll max option chars from 25 to 50 (#2343)

25 is old Mastodon default, the new one is 50
This commit is contained in:
Mélanie Chauvel 2022-02-18 20:08:38 +01:00 committed by GitHub
parent 576484887f
commit c8ed6b482e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -505,7 +505,7 @@ fun <T> mutableLiveData(default: T) = MutableLiveData<T>().apply { value = defau
const val DEFAULT_CHARACTER_LIMIT = 500
private const val DEFAULT_MAX_OPTION_COUNT = 4
private const val DEFAULT_MAX_OPTION_LENGTH = 25
private const val DEFAULT_MAX_OPTION_LENGTH = 50
data class ComposeInstanceParams(
val maxChars: Int,