1
0
Fork 0

Fixes #3041 - Fixes the string that gets displayed in the FxA Onboarding card

master
Jeff Boek 2019-05-31 09:48:22 -07:00
parent 060cd646c8
commit 14f1d40e10
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class OnboardingFirefoxAccountViewHolder(private val view: View) : RecyclerView.
view.header_text.setCompoundDrawablesRelativeWithIntrinsicBounds(icon, null, null, null)
view.header_text.text =
if (!autoSignedIn) view.context.getString(R.string.onboarding_firefox_account_auto_signin_header)
if (autoSignedIn) view.context.getString(R.string.onboarding_firefox_account_auto_signin_header)
else view.context.getString(R.string.onboarding_firefox_account_header, appName)
}