You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/flipcash/features/pools/src/main/kotlin/com/flipcash/app/pools/internal/betting/PoolBettingViewModel.kt
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -460,7 +460,19 @@ internal class PoolBettingViewModel @Inject constructor(
460
460
}.onEach { event ->
461
461
when (event) {
462
462
PaymentEvent.OnPaymentCancelled->Unit
463
-
isPaymentEvent.OnPaymentError->Unit
463
+
isPaymentEvent.OnPaymentError-> {
464
+
when (val error = event.error) {
465
+
isPaymentError.PoolDistributionFailed-> {
466
+
BottomBarManager.showError(
467
+
title = resources.getString(R.string.error_title_resolvePoolDistributionsFailed),
Copy file name to clipboardExpand all lines: apps/flipcash/shared/payments/src/main/kotlin/com/flipcash/app/payments/internal/InternalPaymentController.kt
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -220,7 +220,7 @@ internal class InternalPaymentController(
Copy file name to clipboardExpand all lines: apps/flipcash/shared/payments/src/main/kotlin/com/flipcash/app/payments/internal/InternalPoolResolveDelegate.kt
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -110,10 +110,7 @@ class InternalPoolResolveDelegate @Inject constructor(
0 commit comments