Reduce username debounce rate to 500ms.
This commit is contained in:
parent
fdef13ae92
commit
e22fa499c2
1 changed files with 1 additions and 1 deletions
|
@ -386,7 +386,7 @@ internal class UsernameEditViewModel private constructor(private val mode: Usern
|
|||
companion object {
|
||||
private val TAG = Log.tag(UsernameEditViewModel::class.java)
|
||||
|
||||
private const val NICKNAME_PUBLISHER_DEBOUNCE_TIMEOUT_MILLIS: Long = 1000
|
||||
private const val NICKNAME_PUBLISHER_DEBOUNCE_TIMEOUT_MILLIS: Long = 500
|
||||
|
||||
private fun mapNicknameError(invalidReason: InvalidReason): UsernameStatus {
|
||||
return when (invalidReason) {
|
||||
|
|
Loading…
Add table
Reference in a new issue