File tree Expand file tree Collapse file tree
authentication/src/main/kotlin/com/flipcash/app/auth
session/src/main/kotlin/com/flipcash/app/session/internal Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ class AuthManager @Inject constructor(
102102 suspend fun onAccountPurchased (): Result <Unit > {
103103 return credentialManager.onAccountPurchased()
104104 .onSuccess {
105+ userManager.set(AuthState .LoggedIn )
105106 accountController.getUserFlags().onSuccess { userManager.set(it) }
106107 }.map { Unit }
107108 }
Original file line number Diff line number Diff line change @@ -179,7 +179,6 @@ class RealSessionController @Inject constructor(
179179 )
180180 startPolling()
181181 updateUserFlags()
182- checkForAirdrops()
183182 checkPendingItemsInFeed()
184183 bringActivityFeedCurrent()
185184 shareSheetController.checkForShare()
@@ -251,7 +250,7 @@ class RealSessionController @Inject constructor(
251250
252251 private fun presentWelcomeBonus (amount : LocalFiat ) {
253252 scope.launch {
254- val presentWithBill = false
253+ val presentWithBill = featureFlagController.get( FeatureFlag . WelcomeBonusBill )
255254 toastController.enqueue(
256255 amount = amount,
257256 isDeposit = true ,
You can’t perform that action at this time.
0 commit comments