We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09fa1e9 commit 80aae38Copy full SHA for 80aae38
app/src/main/java/com/nextcloud/client/onboarding/OnboardingServiceImpl.kt
@@ -72,8 +72,7 @@ internal class OnboardingServiceImpl constructor(
72
}
73
74
override fun launchFirstRunIfNeeded(activity: Activity): Boolean {
75
- val isProviderOrOwnInstallationVisible = resources.getBoolean(R.bool.show_provider_or_own_installation)
76
- val canLaunch = isProviderOrOwnInstallationVisible && !preferences.onBoardingComplete && activity is AuthenticatorActivity
+ val canLaunch = !preferences.onBoardingComplete && activity is AuthenticatorActivity
77
if (canLaunch) {
78
val intent = Intent(activity, FirstRunActivity::class.java)
79
activity.startActivityForResult(intent, AuthenticatorActivity.REQUEST_CODE_FIRST_RUN)
0 commit comments