fixed login type ambiguity
This commit is contained in:
parent
3846b25724
commit
871f5d7951
|
@ -603,7 +603,7 @@ class SignInActivity : BaseActivity(), OnClickListener, TextWatcher,
|
|||
val dialog = dialog ?: return
|
||||
val listView = dialog.findViewById(R.id.expandableList) as ExpandableListView
|
||||
val defaultConfig = preferences[defaultAPIConfigKey]
|
||||
defaultConfig.name = getString(R.string.login_type_default)
|
||||
defaultConfig.name = getString(R.string.login_type_user_settings)
|
||||
val allConfig = ArraySet(data)
|
||||
allConfig.add(defaultConfig)
|
||||
val configGroup = allConfig.groupBy { it.safeType }
|
||||
|
|
|
@ -587,6 +587,7 @@
|
|||
<string name="login_challenge_retype_email_hint">Retype the email address associated with your Twitter account.</string>
|
||||
<string name="login_challenge_retype_phone_hint">Retype the phone number associated with your Twitter account.</string>
|
||||
<string name="login_type_default">Default</string>
|
||||
<string name="login_type_user_settings">User settings</string>
|
||||
<string name="login_verification">Login verification</string>
|
||||
<string name="login_verification_pin_hint">Check your phone for a PIN code and enter it to log in.</string>
|
||||
<string name="login_verification_push_hint">Accept login verification request from Twitter app, once you approved the request, click OK.</string>
|
||||
|
|
Loading…
Reference in New Issue