fixed login type ambiguity

This commit is contained in:
Mariotaku Lee 2017-05-21 10:11:37 +08:00
parent 3846b25724
commit 871f5d7951
No known key found for this signature in database
GPG Key ID: 99505AEA531814F1
2 changed files with 2 additions and 1 deletions

View File

@ -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 }

View File

@ -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>